VirtualPathUtility::ToAppRelative Method (String^)
Converts a virtual path to an application-relative path using the application virtual path that is in the AppDomainAppVirtualPath property.
Assembly: System.Web (in System.Web.dll)
Parameters
- virtualPath
-
Type:
System::String^
The virtual path to convert to an application-relative path.
| Exception | Condition |
|---|---|
| ArgumentException | virtualPath is null. |
If the virtual path for the application is "myapp" and the virtual path "/myApp/sub/default.asp" is passed into the ToAppRelative method, the resulting application-relative path is "~/sub/default.aspx".
If virtualPath does not start with the current application path, the ToAppRelative method returns the virtual path unchanged.
If virtualPath is the same as the application path, the root operator (the tilde [~]), is returned. For example, the current application virtual directory path can be accessed from the AppDomainAppVirtualPath property.
The following code example demonstrates how to use the IsAbsolute, IsAppRelative, and ToAppRelative methods.
Available since 2.0