how does Request.QueryString work?
问题 I have a code example like this : location.href = location.href + "/Edit?pID=" + hTable.getObj().ID; ; //aspx parID = Request.QueryString["pID"]; //c# it works, my question is - how ? what is the logic ? thanks :) 回答1: 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