P
Paxton
I created an html email containing a form whose method is POST. The
form is posted to an asp page for processing, but no values are
retrieved. So I response.write all the Request.Form fields, and nothing
appears. I change the form's method to GET, then response.write the
Request.QueryString items (which I can see in the URL) and it works fine.
I need to use POST, as the quantity of data from the form will often
exceed the limits of querystrings. Is there something I'm overlooking?
Why doesn't Request.Form work?
P
form is posted to an asp page for processing, but no values are
retrieved. So I response.write all the Request.Form fields, and nothing
appears. I change the form's method to GET, then response.write the
Request.QueryString items (which I can see in the URL) and it works fine.
I need to use POST, as the quantity of data from the form will often
exceed the limits of querystrings. Is there something I'm overlooking?
Why doesn't Request.Form work?
P