HttpRequest.MapPath Method (String, String, Boolean)
.NET Framework 3.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
Not applicable.
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. |
Community Additions
ADD
Show:
Caution: