Same.
HttpContext.Current.Request.QueryString["somekey"]
Both GET and POST have a request in the request. Only POST has form data.
You should not do QueryString.ToString() . This will evaluate ALL keys in the NameValueCollection. You must use the index to obtain the desired key or enumeration using the Keys property.
source share