HttpRequest.RawUrl 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前请求的原始 URL。
public:
property System::String ^ RawUrl { System::String ^ get(); };
public string RawUrl { get; }
member this.RawUrl : string
Public ReadOnly Property RawUrl As String
属性值
当前请求的原始 URL。
示例
下面的代码示例使用 HtmlEncode 该方法对属性的值 RawUrl 进行 HTML 编码,以及 WriteLine 将编码值写入文件的方法。 此代码示例是为类提供的大型示例的 HttpRequest 一部分。
// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath));
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath));
sw.WriteLine(Server.HtmlEncode(Request.RawUrl));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath))
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath))
sw.WriteLine(Server.HtmlEncode(Request.RawUrl))
注解
原始 URL 定义为域信息后面的 URL 的一部分。 在 URL 字符串 http://www.contoso.com/articles/recent.aspx
中,原始 URL 为 /articles/recent.aspx。 原始 URL 包括查询字符串(如果存在)。