Page.ClientQueryString Property
.NET Framework 3.0
Gets the query string portion of the requested URL.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public ReadOnly Property ClientQueryString As String 'Usage Dim instance As Page Dim value As String value = instance.ClientQueryString
/** @property */ public String get_ClientQueryString ()
public function get ClientQueryString () : String
Not applicable.
Property Value
The query string portion of the requested URL.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 System.Web.HttpServerUtility.UrlDecode(System.String) method to decode the query string.
Community Additions
ADD
Show: