Click here to Skip to main content
Click here to Skip to main content

URL Mapping / URL Rewriting / Search Engine Friendly URLs / Virtual URLs (ASP.NET)

By , 20 Apr 2007
 

Introduction

(ASP.NET, C#, Visual Studio 2005)

Hi folks; Recently, I built a custom Content Management Software for a website. The client wanted the page contents to be served from database by a page ShowContents.aspx?ContentID=XX.
The main requirements were as follows:

  • Search engine friendly URLs (i.e. They would like "/finance/loan.aspx" instead of "ShowContents.aspx?ID=23").
  • Hardcoding URLs in Web.Config's URLMapping section was not an option, as there were no physical pages to map to.
  • Postback should still work on all these virtual URLs.
  • References to the images, css files, and themes should stay intact.

Solution

After a day's research, I came up with this really simple solution. I thought I should sum up the knowledge collected from various sources and make it public for everyone to benefit.
You can integrate following steps in to your existing ASP.NET project, or you can create a new one.

STEP 1

  • Create "ShowContents.aspx", that serves content based on the ContentID passed in the QueryString.
  • To enable postbacks to the raw URL in the Page_Load() event of ShowContents.aspx, insert following line Context.RewritePath(Path.GetFileName(Request.RawUrl)); // needs System.IO

STEP 2

  • Capture the URL requested by the user in the Application_BeginRequest() event of Global.asax.
  • Find the ID of the content from database that is relevant to this URL
  • ReWritePath to ShowContents.aspx?ContentID=XX. The user will see requested URL in the address bar with the desired content.
  • Any files that physically exist on the server will still get served as usual.

Using the code

// STEP 1 (ShowContents.aspx)
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// This page displays contents from a database for a ContentID. This file
// must contain the following line in it's Page_Load() event.
Context.RewritePath(Path.GetFileName(Request.RawUrl)); //needs System.IO

// STEP 2 (Global.asax)
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Following code goes in your Global.asax file, in the root directory of
// the project. This file captures the incoming requests' URL, gets the 
// Content ID of the content related to the URL and redirects the user to
// ShowContents.aspx?ContentID=XX. While the user still sees the requested 
// URL in the address bar.

    <%@ Import Namespace="System.IO" %>
    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        // If the requested file exists
        if (File.Exists(Request.PhysicalPath))
            { 
                // Do nothing here, just serve the file
            }
        // If the file does not exist then
        else if (!File.Exists(Request.PhysicalPath))
            {
            // Get the URL requested by the user
            string sRequestedURL = Request.Path.Replace(".aspx", "");
            
            // You can retrieve the ID of the content from database that is 
            // relevant to this requested URL (as per your business logic)
            int nId = 0;        
            ////// nId = GetContentIDByPath(sRequestedURL); \\\\\

           // The ShowContents.aspx page should show contents relevant to 
           // the ID that is passed here
            string sTargetURL = "~/ShowContents.aspx?ContentID=" + nId.ToString();

            // Owing to RewritePath, the user will see requested URL in the
        // address bar
            // The second argument should be false, to keep your references
        // to images, css files
            Context.RewritePath(sTargetURL, false);
        }
    }
//  That's all! :-) 
 

Hope this helps you save time on researching various sources. You might like to download the zip file containing a sample VS 2005 project.

Feedback is welcome and appreciated.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Manu Agrawal
Web Developer
United States United States
Member
Manu Agrawal is a .NET developer living in the USA.
He has good professional web development experience (mainly in ASP.NET, C#). He enjoys developing high performance and secure websites.
He holds a master's degree in E-Commerce and Management from London, UK.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralProblem with styles Pinmemberbenny6017 Oct '09 - 12:36 
GeneralRe: Problem with styles PinmemberManu Agrawal12 Nov '09 - 13:25 
Questionimages and css file path Pinmemberdeching17 May '09 - 19:45 
AnswerRe: images and css file path PinmemberManu Agrawal12 Nov '09 - 13:27 
GeneralAnother easy and efficient approach sample code Pinmembersamardeep6 Apr '09 - 21:04 
GeneralFor Simplest Way of writing URL Rewriting PinmemberDotNetGuts24 Jul '08 - 10:31 
QuestionWhy Not Use UrlRewriter.Net? Pinmembernickyt19 Jun '08 - 6:04 
GeneralQuestion PinmemberAshley van Gerven17 Jun '08 - 16:36 
GeneralDoesn't work! Pinmemberadalbas12 Jun '08 - 5:46 
GeneralURL Rewriting Advice Pinmemberatwalb11 Jun '08 - 6:41 
Newsimages and css not load on main page Pinmembershaan11 May '08 - 21:58 
Generalimages not working PinmemberSteve45618 Mar '08 - 16:05 
GeneralRe: images not working PinmemberManu Agrawal15 Apr '08 - 10:47 
GeneralExcellent Pinmemberultradream5 Mar '08 - 4:20 
Questionwhy do i lose all my images and my css ? Pinmembergreekhand19 Sep '07 - 10:13 
AnswerRe: why do i lose all my images and my css ? PinmemberManu Agrawal19 Sep '07 - 10:51 
GeneralRe: why do i lose all my images and my css ? Pinmembergreekhand19 Sep '07 - 11:42 
Generali tried some stuff , got another question ... Pinmembergreekhand20 Sep '07 - 1:28 
GeneralRe: i tried some stuff , got another question ... PinmemberManu Agrawal22 Sep '07 - 2:35 
GeneralRe: i tried some stuff , got another question ... Pinmembergreekhand25 Sep '07 - 4:17 
GeneralDotNetNuke friendly urls PinmemberTommi G16 May '07 - 15:03 
GeneralPOST back problems PinmemberAndrei Rinea8 May '07 - 10:55 
NewsValidators and WebResource.axd in general PinmemberAndrei Rinea3 May '07 - 5:12 
GeneralRe: Validators and WebResource.axd in general PinmemberManu Agrawal3 May '07 - 5:57 
AnswerRe: Validators and WebResource.axd in general PinmemberAndrei Rinea21 May '07 - 6:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 21 Apr 2007
Article Copyright 2007 by Manu Agrawal
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid