Is passing Querystring same as Hidden variable?

B

Bobby Edward

On my HTML form I have an POST action that points to an online DLL. in my
form I have a hidden input field...
<input type='hidden' name='x_login' value='xxxxxxxx' />

Is this the same as doing a response.redirect to the DLL with a querystring
arg of the name/value pair, like this...

response.redirect(http://......../Some.DLL?x_login=xxxxxxxx)

Is this equivalent?
 
G

Göran Andersson

Bobby said:
On my HTML form I have an POST action that points to an online DLL. in my
form I have a hidden input field...
<input type='hidden' name='x_login' value='xxxxxxxx' />

Is this the same as doing a response.redirect to the DLL with a querystring
arg of the name/value pair, like this...

response.redirect(http://......../Some.DLL?x_login=xxxxxxxx)

Is this equivalent?

No, it's not equivalent.

If you have method="get" (or unspecified) in your form, it's equivalent.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,756
Messages
2,569,540
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top