System.Web.VirtualPathUtility.ToAppRelative Method

Converts a virtual path to an application-relative path using the application virtual path that is in the HttpRuntime.AppDomainAppVirtualPath property.

Syntax

public static string ToAppRelative (string virtualPath)

Parameters

virtualPath
The virtual path to convert to an application-relative path.

Returns

The application-relative path representation of virtualPath.

Remarks

If the virtual path for the application is "myapp" and the virtual path "/myApp/sub/default.asp" is passed into the VirtualPathUtility.ToAppRelative(string) method, the resulting application-relative path is "~/sub/default.aspx".

If virtualPath does not start with the current application path, the VirtualPathUtility.ToAppRelative(string) 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 HttpRuntime.AppDomainAppVirtualPath property.

Requirements

Namespace: System.Web
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0