HttpRequest.PhysicalPath Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the physical file system path corresponding to the requested URL.
public:
property System::String ^ PhysicalPath { System::String ^ get(); };
public string PhysicalPath { get; }
member this.PhysicalPath : string
Public ReadOnly Property PhysicalPath As String
Property Value
The file system path of the current request.
Examples
The following code example uses the HtmlEncode method to HTML-encode the value of the PhysicalPath 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(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))
Remarks
In redirect scenarios using Execute and Transfer, the PhysicalPath property returns the path to the original page. To find the physical path of the currently executing page use the MapPath method with the input argument set as the CurrentExecutionFilePath property.