Click here to Skip to main content
15,886,693 members
Articles / Web Development / ASP.NET

Programmatically Setting Control Adapters for URL Rewriting and AJAX

Rate me:
Please Sign up or sign in to vote.
4.23/5 (7 votes)
25 Jun 2008CPOL3 min read 66.5K   196   22  
A guide to injecting control adapters at runtime
using System;
using System.Collections.Generic;
using System.Text;

namespace CodeKing.Web
{
    public class UrlParser
    {
        public string ParseUrl(Uri requestUrl)
        {
            if (requestUrl.AbsolutePath == "/virtual/sample.aspx")
            {
                return "/default.aspx";
            }
            else
            {
                return null;
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Architect
United Kingdom United Kingdom
Mike Carlisle - Technical Architect with over 20 years experience in a wide range of technologies.

@TheCodeKing

Comments and Discussions