Page.ClientQueryString Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the query string portion of the requested URL.
public:
property System::String ^ ClientQueryString { System::String ^ get(); };
public string ClientQueryString { get; }
member this.ClientQueryString : string
Public ReadOnly Property ClientQueryString As String
Property Value
The query string portion of the requested URL.
Remarks
The ClientQueryString property contains the query string portion of the URL requested by the browser. For example, if the requested URL is http://www.contoso.com/default.aspx?id=100
, the ClientQueryString property will contain "id=100". The ClientQueryString property is encoded; use the HttpServerUtility.UrlDecode method to decode the query string.