Reputation: 28314
I am using asp.net. I am wondering if there is an equivalent way to access data in the Post
and Get
arrays like you do in PHP.
Upvotes: 0
Views: 1047
Reputation: 2025
You can use the Request.QueryString Collection for GET and Request.Form for POST:
http://msdn.microsoft.com/en-us/library/system.web.httprequest.querystring.aspx
http://msdn.microsoft.com/en-us/library/system.web.httprequest.form.aspx
Upvotes: 1