HttpRequest.PhysicalApplicationPath 属性

定义

获取当前正在执行的服务器应用程序的根目录的物理文件系统路径。

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

属性值

String

当前应用程序的根目录的文件系统路径。

示例

下面的代码示例使用 HtmlEncode 该方法对属性的值 PhysicalApplicationPath 进行 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))

适用于