Request request object is a map of all request headers - both from a POST request, and for URLs:
//This will retrieve the value of "SomeHeader" from the request //eg http://localhost/page.aspx?SomeHeader=thisisvalue string value = HttpContext.Current.Request["SomeHeader"]; //value == "thisisvalue"
source share