HttpRequest.MapPath Method (String, String, Boolean)
.NET Framework 2.0
Maps the specified virtual path to a physical path.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: String^ MapPath ( String^ virtualPath, String^ baseVirtualDir, bool allowCrossAppMapping )
public String MapPath ( String virtualPath, String baseVirtualDir, boolean allowCrossAppMapping )
public function MapPath ( virtualPath : String, baseVirtualDir : String, allowCrossAppMapping : boolean ) : String
Parameters
- virtualPath
The virtual path (absolute or relative) for the current request.
- baseVirtualDir
The virtual base directory path used for relative resolution.
- allowCrossAppMapping
true to indicate that virtualPath may belong to another application; otherwise, false.
Return Value
The physical path on the server.| Exception type | Condition |
|---|---|
| allowCrossMapping is false and virtualPath belongs to another application. | |
HttpException | No HttpContext object is defined for the request. |
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show:
Caution