HttpRequest.RawUrl 属性

定义

获取当前请求的原始 URL。

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

属性值

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 包括查询字符串(如果存在)。

适用于