ASP.NET 4.0 Routing Tutorial

It is a common mis-perception that URL Routing is  exclusive to MVC, with .NET 3.5 SP1 and above URL Routing can be also used with ASP.NET Web Forms. In ASP.NET 4.0 URL Routing is fully integrated and so straightforward and powerful to use it should be preferred over URL Rewriting whenever possible.

First you will need to register the Routes in a subroutine and then add them in the Application_Start() event:

void RegisterRoutes(RouteCollection routes)
{
routes.MapRoute(
“articles-category”,  //Name of the Route (can be anyuthting)
“articles/{category}”, // URL with parameters
“~/category.aspx”); //Page which will handles and process the request
}

void Application_Start()
{
RegisterRoutes(RouteTable.Routes);
}

In the above code, the Route named articles-category will handle incoming requests for URLs which match the articles/{category} route definition. This route definition uses “articles/” as a literal string in the URL and then takes the subsequent URL text for the categoryparameter. For example, the URL articles/routing will direct to the page category.aspx and pass “routing”as the value for the categoryparameter.

The parameters from the URL are passed to the aspx page in key-value dictionary pairs which can be accessed from Page.RouteData.Values. So in the above example the category value can be read into a variable using the below code

string category = Page.RouteData.Values["category"] as string;

This code would typically be placed in the Page_Load() event of the page.

In addition to accessing the parameters programatically, they can also be read by the SQLDataSource control using the control:

connectionstring=”<!–ConnectionStrings:Main–>”
selectcommand=”select title, text from Articles where category=@cat”>







Generate URLs Using ASP.NET Routing

A major difference between Routing and URL rewriting is that Routing also allows for the generation of outgoing URLs served on the site. In the above example if we wanted to show users a URL for the ado category of articles, then we could generate a URL by using the below code:

string url = Page.GetRouteUrl(“articles-category”,
  new { category = “ado” });

This code uses the articles-category Route to generate a url string, this could be used on the page or passed to the Response.Redirect method to redirect to another page. Whilst the last use is valid, if the user needs to be redirected to another page using Routing it is more efficient to use the Response.RedirectToRoute method:

Response.RedirectToRoute(“articles-category”,
  new { category = “ado” });

We’re a company that works differently to most. Value is what we output and help our customers achieve, not how much money we put in the bank. It’s not because we are altruistic. It’s based on an even simpler principle. “Do good things, and good things will come to you”. If you have any question, please feel free to contact us at http://www.asphostportal.com.


Article from articlesbase.com

ASP.NET 4.0 Routing Tutorial

How Do I: Use the ASP.NET AJAX Popup Cotrol Extender
Video Rating: 0 / 5