This documentation is archived and is not being maintained.
HttpRequest.FilePath Property
.NET Framework 1.1
Gets the virtual path of the current request.
[Visual Basic] Public ReadOnly Property FilePath As String [C#] public string FilePath {get;} [C++] public: __property String* get_FilePath(); [JScript] public function get FilePath() : String;
Property Value
The virtual path of the current request.
Remarks
The FilePath does not include the PathInfo trailer. For the URL Http://www.contoso.com/virdir/page.html/tail, the FilePath is Http://www.contoso.com/virdir/page.html .
Example
The following example assigns the server's virtual directory path for the current request to a string variable.
[Visual Basic] Dim Path As String Path = Request.FilePath [C#] String Path; Path = Request.FilePath; [C++] String* Path; Path = Request->FilePath; [JScript] var path : String = Request.FilePath
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
HttpRequest Class | HttpRequest Members | System.Web Namespace
Show: