Page.ClientQueryString Property

Definition

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.

Applies to