HttpRequest.FilePath 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前请求的虚拟路径。
public:
property System::String ^ FilePath { System::String ^ get(); };
public string FilePath { get; }
member this.FilePath : string
Public ReadOnly Property FilePath As String
属性值
当前请求的虚拟路径。
示例
下面的代码示例使用 HtmlEncode 方法对 属性的值 FilePath 进行 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))
注解
属性 FilePath 不包括尾部 PathInfo 。 例如,对于 URL http://www.contoso.com/virdir/page.html/tail
, FilePath 值为 /virdir/page.html。