HttpRequest.Path 属性

定义

获取当前请求的虚拟路径。

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

属性值

当前请求的虚拟路径。

示例

下面的代码示例使用 HtmlEncode 方法对 属性的值 Path 进行 HTML 编码, WriteLine 并使用 方法将编码的值写入文件。 此代码示例是为 HttpRequest 类提供的一个更大示例的一部分。

// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(DateTime.Now.ToString()));
sw.WriteLine(Server.HtmlEncode(Request.CurrentExecutionFilePath));
sw.WriteLine(Server.HtmlEncode(Request.ApplicationPath));
sw.WriteLine(Server.HtmlEncode(Request.FilePath));
sw.WriteLine(Server.HtmlEncode(Request.Path));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(DateTime.Now.ToString()))
sw.WriteLine(Server.HtmlEncode(Request.CurrentExecutionFilePath))
sw.WriteLine(Server.HtmlEncode(Request.ApplicationPath))
sw.WriteLine(Server.HtmlEncode(Request.FilePath))
sw.WriteLine(Server.HtmlEncode(Request.Path))

注解

Path是 和 预告片的FilePathPathInfo串联。 例如,对于 URL http://www.contoso.com/virdir/page.html/tail,为 Path /virdir/page.html/tail。

适用于

另请参阅