Page.ClientQueryString 属性

定义

获取请求的 URL 的查询字符串部分。

public:
 property System::String ^ ClientQueryString { System::String ^ get(); };
public string ClientQueryString { get; }
member this.ClientQueryString : string
Public ReadOnly Property ClientQueryString As String

属性值

String

请求的 URL 的查询字符串部分。

注解

ClientQueryString 属性包含浏览器请求的 URL 的查询字符串部分。 例如,如果请求的 URL 为 http://www.contoso.com/default.aspx?id=100,则 ClientQueryString 属性将包含“id=100”。 属性 ClientQueryString 经过编码;使用 HttpServerUtility.UrlDecode 方法解码查询字符串。

适用于