Getting a POST variable
Use this for GET values: Request.QueryString[“key”] And this for POST values Request.Form[“key”] Also, this will work if you don’t care whether it comes from GET or POST, or the HttpContext.Items collection: Request[“key”] Another thing to note (if you need it) is you can check the type of request by using: Request.RequestType Which will be the … Read more