S
Steve Pugh
Jerry Manner said:Hi, i am also not an expert. I have visited the url you mentioned in
your post. From that website I concluded that I should use the form tag
with the method and action attribute to place the extra string at the
end of the url of the webpage I am going to.
<FORM action="ResultFrame.htm" method="get">
<input type="text" name="T1" size="40">
<a href="ResultFrame.htm" target="_top"><img border="0" src="Knop.gif"
width="129" height="18"></a>
</FORM>
How is anyone supposed to submit that form?
I have tried this code. I was assuming that I would see the url (
ResultFrame.htm) and then a question mark and then the content of the
text field, but that was not the case. Please correct me if I am
tottaly of track.
As the form can't be submitted you must have followed the link
instead. Your code is (some margins aside) no different to this:
<FORM action="ResultFrame.htm" method="get">
<input type="text" name="T1" size="40">
</FORM>
<a href="ResultFrame.htm" target="_top"><img border="0" src="Knop.gif"
width="129" height="18"></a>
See?
I know how to get the url adress of the visitingpage and then use
javascript to get a part of that url ( with the extra string). But I
still cannot open an url with attach to the address an extra string.
<FORM action="ResultFrame.htm" method="get">
<input type="text" name="T1" size="40">
<input type="image" src="Knop.gif" width="129" height="18"
alt="Submit">
</FORM>
Steve