HttpRequest.PhysicalApplicationPath 属性

定义

获取当前正在执行的服务器应用程序的根目录的物理文件系统路径。Gets the physical file system path of the currently executing server application's root directory.

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

属性值

String

当前应用程序的根目录的文件系统路径。The file system path of the current application's root directory.

示例

下面的代码示例使用 HtmlEncode 方法对属性的值进行 HTML 编码 PhysicalApplicationPath ,并使用 WriteLine 方法将编码的值写入文件。The following code example uses the HtmlEncode method to HTML-encode the value of the PhysicalApplicationPath property and the WriteLine method to write the encoded value to the file. 此代码示例是为类提供的更大示例的一部分 HttpRequestThis code example is part of a larger example provided for the HttpRequest class.

// 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))

适用于