and here is the output: http://www.test web site.com/?Text1=123&button=Submit
TexasWebDevelopers -> RE: Form Get Problem (4/17/2009 16:55:34)
There are fundamental differences between using "GET" and "POST" in a form. But in the simplest language GET means that the form data is encoded by a browser into a URL and should be use only to retrieve data. POST means the form data is to appear within a message body and is used for updating data, etc. Getting data=GET Passing data=POST So what are you really trying to do here?
jeepless -> RE: Form Get Problem (4/17/2009 17:08:47)
In the line <input name="button" type="submit" value="Submit" />, try removing the name="button" part of it. So you would end up with:
<input type="submit" value="Submit" />
Joey -> RE: Form Get Problem (4/17/2009 17:39:48)
Thanks jeepless that makes the string perfect!
BeTheBall -> RE: Form Get Problem (4/17/2009 23:00:06)
quote:
ORIGINAL: jeepless
In the line <input name="button" type="submit" value="Submit" />, try removing the name="button" part of it. So you would end up with:
<input type="submit" value="Submit" />
Hmmm. Learned something new today. That makes sense. Since a querystring is composed of name/value pairs, the taking away of the name prevents the pair from going into the querystring. Nice solution.