Used for so-called "relative URL rewriting" where URL rewriting rules have a variable "{PageName}" which is replaced by the caller's page name using this method. The "~/" section at the beginning is replaced with the absolute path of the calling page, so each rule can function regardless of the page depth and location in the portal hierarchy. Current Request.Url is used as a calling URL.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string RewritePagePath(
	string urlToRewrite
)
Visual Basic
Public Shared Function RewritePagePath ( 
	urlToRewrite As String
) As String
Visual C++
public:
static String^ RewritePagePath(
	String^ urlToRewrite
)
F#
static member RewritePagePath : 
        urlToRewrite : string -> string 

Parameters

urlToRewrite
Type: System..::..String
URL to rewrite.

Return Value

Type: String
Rewritten URL.

See Also