Page.ClientQueryString 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取请求的 URL 的查询字符串部分。
public:
property System::String ^ ClientQueryString { System::String ^ get(); };
public string ClientQueryString { get; }
member this.ClientQueryString : string
Public ReadOnly Property ClientQueryString As String
属性值
请求的 URL 的查询字符串部分。
注解
该 ClientQueryString 属性包含浏览器请求的 URL 的查询字符串部分。 例如,如果请求的 URL 为 http://www.contoso.com/default.aspx?id=100
,则 ClientQueryString 属性将包含“id=100”。 属性 ClientQueryString 经过编码;使用 HttpServerUtility.UrlDecode 方法解码查询字符串。