0 out of 3 rated this helpful - Rate this topic

HttpRequest.CurrentExecutionFilePath Property

Gets the virtual path of the current request.

Namespace:  System.Web
Assembly:  System.Web (in System.Web.dll)
public string CurrentExecutionFilePath { get; }

Property Value

Type: System.String
The virtual path of the current request.

CurrentExecutionFilePath returns the file path to the currently executing page handler. For redirect scenarios using Execute and Transfer methods this means that the CurrentExecutionFilePath property returns the path to the page redirected to (child page). However, when the client is redirected to another page, the FilePath property returns the path to the original page.

The following code example uses the HtmlEncode method to HTML-encode the value of the CurrentExecutionFilePath property and the WriteLine method to write the encoded value to the file. This 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(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));


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
FAO: MSDN documentation team
Please please please stop giving "example" code that has absolutely zero educational value (as is the case here).

sw.WriteLine(Server.HtmlEncode(Request.CurrentExecutionFilePath));

tells me nothing about the behavior of the method other than it returns a string!

Whenever "examples" like this are included they should *always* show the expected output somewhere.

I appreciate that this snippet is from a larger "example" but that too is useless unless download, compile and and run the code, which all takes time.

Please stop using "examples" like this - it just makes me so mad.
Quick Code Example
this.Label1.Text = Server.HtmlEncode(Request.CurrentExecutionFilePath);