Page Lifecycle ASP.Net Tutorial

Request.RawUrl returns the original URL (before being remapped).
Request.Path returns the current URL (after being remapped).
Request.AppRelativeCurrentExecutionFilePath returns the application relative URL (after being remapped).
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

    void Page_Load()
    {
        if (String.Compare(Request.Path, Request.RawUrl, true) != 0)
            lblMessage.Text = "The URL to this page has changed, " +
                "please update your bookmarks.";
    }



    Default Page


    
    

    
            id="lblMessage"
        CssClass="message"
        Runat="server" />
    
    The original request was for:
    

        <%=Request.RawUrl%>
    

    which got remapped to:
    

        <%= Request.Path %>
    

    and the application relative version is:
    

        <%= Request.AppRelativeCurrentExecutionFilePath %>