HttpRequest.PhysicalApplicationPath 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前正在执行的服务器应用程序的根目录的物理文件系统路径。
public:
property System::String ^ PhysicalApplicationPath { System::String ^ get(); };
public string PhysicalApplicationPath { get; }
member this.PhysicalApplicationPath : string
Public ReadOnly Property PhysicalApplicationPath As 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))