-
Request.Form?? WEIRD
Hey all,
For some strange reason request.form doesnt work??
I have a form with method=post then on the asp page i have
varMess = Request.Form("message")
Where message = the name of an input box!
But nothing comes up even though i entered something in!
Any ideas
thanks
b :)
-
hi
Not possible...
Perphaps missing somthing somewhere probabaly a simple mistake...post code of both pages if need be.
-
Post your code. You may be trying to access it at a time that it either is not populated or not available.
-
Nah it was before a binarywrite method so request.form doesnt work! But it wasnt giving me that error. But how stupid is that!
Anyone know of a way around this problem?
-
hi,
i have had this - the binaryread and form/querystring are multually exclusive.
you have to do only the binaryread to get the whole http mesage then string slice out any form fields, which is a tedious.... but the only way I know of.
cheers, A.J.P