473,434 Members | 1,462 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,434 software developers and data experts.

bypassing form and submitting data through web address - NOT WORKING

Hello and Good day.

There's a site I want to link to passing info I collect without having
to re-enter the data on that's sites input form. I know this is not
always possible, but in this case want to make sure it's not code. The
site renders a Sat image when fed address.

To manually get to the form go to :
imageatlas.globexplorer.com
and enter a valid address and hit FIND IT.

The form in the source that submits from the FIND IT gif is below:

<form name="address" method="POST"
action="http://imageatlas.globexplorer.com/ImageAtlas/view.do?group=ImageAtlas">
<tr>
<td width="75"><img src="images/spacer.gif"></td>
<td width="77"><img src="images/spacer.gif"></td>
</tr>

<tr>
<td colspan="2">Address <br> <input type="text"
name="address">
</td>
</tr>
<tr>
<td colspan="2">City<strong><br>
<input name="city" type="text" id="city">
</strong></td>
</tr>
<tr>
<td>State<strong></strong></td>
<td>Zip Code (Optional) </td>
</tr>
<tr>
<td>
<input name="state" type="text" id="state" size="8">
</td>
<td>
<input name="zip" type="text" id="zip" size="8">
</td>
</tr>
<tr>
<td colspan="2"><input type="image" height="17" alt="Find
Image" hspace="36" width="72" src="images/bttn_findimage.gif"
border="0" name="I1"></td>
</tr>
</form>
</table>
My automated attempt to pull 101 SW 54 ST MIAMI FL (NO NOT MY REAL
ADDRESS SO DON'T TRY AND SHOW UP FOR DINNER OKAY):

http://imageatlas.globexplorer.com/I...miami?state=FL

results in nothing???

should i also pass that I1 field? is so what/how? If not possible,
why/how?

Many thanks in advance for any help or info!
Jul 20 '05 #1
2 2114

<ja***@cyberpine.com> wrote in message
news:ef**************************@posting.google.c om...

[snip]
The form in the source that submits from the FIND IT gif is below:

<form name="address" method="POST"
action="http://imageatlas.globexplorer.com/ImageAtlas/view.do?group=ImageAtl
as"> <tr>
<td width="75"><img src="images/spacer.gif"></td>
<td width="77"><img src="images/spacer.gif"></td>
</tr>

<tr>
<td colspan="2">Address <br> <input type="text"
name="address">
</td>
</tr>
<tr>
<td colspan="2">City<strong><br>
<input name="city" type="text" id="city">
</strong></td>
</tr>
<tr>
<td>State<strong></strong></td>
<td>Zip Code (Optional) </td>
</tr>
<tr>
<td>
<input name="state" type="text" id="state" size="8">
</td>
<td>
<input name="zip" type="text" id="zip" size="8">
</td>
</tr>
<tr>
<td colspan="2"><input type="image" height="17" alt="Find
Image" hspace="36" width="72" src="images/bttn_findimage.gif"
border="0" name="I1"></td>
</tr>
</form>
</table>
My automated attempt to pull 101 SW 54 ST MIAMI FL (NO NOT MY REAL
ADDRESS SO DON'T TRY AND SHOW UP FOR DINNER OKAY):

http://imageatlas.globexplorer.com/I...miami?state=FL
results in nothing???


Data sent via the POST method appears in the body of the request. With a GET
request, as when you use URL arguments as above, the data is sent as an
argument to the GET command that opens the request. Theoretically, a server
process can provide a way to access data in either place or in both places.

For example, if the data is in application/x-www-form-urlencoded format,
Active Server Pages will let you use

Request.Form("address")

to retrieve the contents of an "address" field from POST data, or

Request.QueryString("address")

to retrieve the contents of an "address" value from GET data. You can also
use

Request("address")

which will return an "address" field found in *either* location. If this is
how the server-side application accesses the data, your approach should
probably work. If the application uses Request.Form('address"), your
substitution definitely *won't* work.

Jul 20 '05 #2
ja***@cyberpine.com wrote:
There's a site I want to link to passing info I collect without having
to re-enter the data on that's sites input form. I know this is not
always possible, but in this case want to make sure it's not code. The
site renders a Sat image when fed address.

To manually get to the form go to :
imageatlas.globexplorer.com
and enter a valid address and hit FIND IT.

The form in the source that submits from the FIND IT gif is below:

<form name="address" method="POST"
action="http://imageatlas.globexplorer.com/ImageAtlas/view.do?group=ImageAtlas">
Often a POST form can not be simulated via a GET URL, but in this case
it appears that it can.
My automated attempt to pull 101 SW 54 ST MIAMI FL (NO NOT MY REAL
ADDRESS SO DON'T TRY AND SHOW UP FOR DINNER OKAY):

http://imageatlas.globexplorer.com/I...miami?state=FL


? is used to separate the query part of the URL from the path part.
& is often (not always) used to separate name/variable pairs within
the query.

So the URL you want is:
http://imageatlas.globexplorer.com/I...miami&state=FL

If you include this URL in a web page then remember to write &amp; for
every &.

Steve
--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Eric | last post by:
Hey Everyone.. I have a form that has approximately 7 text fields and 1 checkbox. Generally when this form is submitted(to itself BTW) it works fine, however, when the checkbox is only field...
1
by: Display Name | last post by:
the customer I'm developing a site for uses a canned form-parsing page that allows her to have an email subscription opt-in page add emails to a list she can manage using a link that you point your...
4
by: Rick | last post by:
Hello, I'm having trouble with submitting my form when checking to see if data is present in the user-inputted fields. What I want to happen is for the user to input various pieces of data,...
4
by: antonyliu2002 | last post by:
Let me try to make clear what my concern is. I think it is a pretty interesting one, which I think of while I am developing my web application. I have an authenticated/authorized web...
11
by: Rik | last post by:
Hello guys, now that I'm that I'm working on my first major 'open' forms (with uncontrolled users I mean, not a secure backend-interface), I'd like to add a lot of possibilities to check wether...
1
by: parjanyew | last post by:
Hi, I am working on a somewhat complicated form wherein I am collecting data for a client and then submitting the data for credit card processing and submitting it to a gateway and sending a...
10
by: Tim Streater | last post by:
I have a form and a button to submit it. The button is made from: <input type=button onclick='myHandler(this.form);'> This all works fine except that in Safari 2.0.4, the enter/return keys, if...
6
by: phpnewbie26 | last post by:
This has been confusing me for a while. I don't understand why it isn't working. In my original coding, I have an action called submitted.php and this is what is looks like: <?php ...
8
by: nargis2009 | last post by:
Hi, I have been encountering problems with my web page which is supposed to send email, and wondered if anybody can help find error. Initially I had all codes in one page and on click of...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.