Accessing POST data

Hi,

I want to post data like Name=Lucas to the example.aspx via POST method with ajax from example.htm .

How can the code from example.aspx access that data I am looking for something like the Request.QueryString["Name"] for the GET method or the $_POST variable in php.

Please help,

thanks


Answer this question

Accessing POST data

  • DanParks

    Post data can be accessed with Request.Form["Name"]

  • Accessing POST data