Is passing Querystring same as Hidden variable?

  • Thread starter Thread starter Bobby Edward
  • Start date Start date
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?
 
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.
 
Back
Top