Working with Post Data

Working with Post Data

am 02.12.2004 19:35:55 von Drew

I have seen, when I get certain errors, that the browser can spit all the
post data back out on the error page. Is there anyway to work with this
post data? Like for instance, can I lump all the post data into a cookie?

Thanks,
Drew Laing

Re: Working with Post Data

am 02.12.2004 19:43:00 von unknown

Try:

For Each thing in Request.Form
Response.Write thing & " = " & Request.Form(thing) & "


"
Next

This isn't database related, btw. .asp.general would have been a better
group, but no big deal. :]

Ray at work

"Drew" wrote in message
news:u4fbD3J2EHA.2112@TK2MSFTNGP15.phx.gbl...
> I have seen, when I get certain errors, that the browser can spit all the
> post data back out on the error page. Is there anyway to work with this
> post data? Like for instance, can I lump all the post data into a cookie?
>
> Thanks,
> Drew Laing
>
>