HttpRequest.CurrentExecutionFilePath 属性

定义

获取当前请求的虚拟路径。

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

属性值

当前请求的虚拟路径。

示例

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

注解

CurrentExecutionFilePath 返回当前正在执行的页面处理程序的文件路径。 对于使用 ExecuteTransfer 方法的重定向方案,这意味着 CurrentExecutionFilePath 属性返回重定向到子页) (页的路径。 但是,当客户端重定向到另一个页面时, FilePath 属性将返回原始页面的路径。

适用于

另请参阅