how does Request.QueryString work?

The HttpRequest class represents the request made to the server and has various properties associated with it, such as QueryString. The ASP.NET run-time parses a request to the server and populates this information for you. Read HttpRequest Properties for a list of all the potential properties that get populated on you behalf by ASP.NET. Note: not all properties will be … Read more