Possible Duplicate:
Getting a POST Variable in ASP.net
I just want to print all posted variables with their values.
Request.Form
gives me only names with no values and Request.InputStream
gives me the "Timeouts are not supported on this stream." error.
How can I get all posted values like $_POST
does in PHP
?