HttpRequest.PhysicalPath 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与请求的 URL 相对应的物理文件系统路径。
public:
property System::String ^ PhysicalPath { System::String ^ get(); };
public string PhysicalPath { get; }
member this.PhysicalPath : string
Public ReadOnly Property PhysicalPath As String
属性值
当前请求的文件系统路径。
示例
下面的代码示例使用 HtmlEncode 该方法对属性的值 PhysicalPath 进行 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))
注解
在重定向方案中,PhysicalPath该Transfer属性返回Execute原始页面的路径。 若要查找当前正在执行的页面的物理路径,请使用 MapPath 将输入参数设置为 CurrentExecutionFilePath 属性的方法。