VirtualPathUtility.ToAppRelative Method (String)
.NET Framework 3.0
Converts a virtual path to an application-relative path using the application virtual path that is in the AppDomainAppVirtualPath property.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public static String ToAppRelative ( String virtualPath )
public static function ToAppRelative ( virtualPath : String ) : String
Not applicable.
Parameters
- virtualPath
The virtual path to convert to an application-relative path.
Return Value
The application-relative path representation of virtualPath.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.
Community Additions
ADD
Show: