Python frameworks always provide ways to handle urls that convey the data of the request in an elegant way:
think
http://somewhere.overtherainbow.com/userid/123424/
I want your to notice the ending path /userid/123424/
How do you do this in ASP.NET?
|
13
|
Python frameworks always provide ways to handle urls that convey the data of the request in an elegant way: think http://somewhere.overtherainbow.com/userid/123424/ I want your to notice the ending path /userid/123424/ How do you do this in ASP.NET?
|
|||
|
|
|
|
There are a lot of ways to accomplish this. ScottGu has a good overview in this blog post. |
||
|
|
|
|
You can read Rob Connerys post ASP.NET MVC: Using RESTful Architecture http://blog.wekeroad.com/2007/12/06/aspnet-mvc-using-restful-architecture/ Also read this post on rewriting URLs using an IHttpHandler: http://codeeleven.blogspot.com/2007/11/rewriting-urls-in-aspnet-without-using.html |
||
|
|
|
|
Also, check out ASP.NET MVC or if you're set on webforms, the new System.Web.Routing namespace in ASP.NET 3.5 SP1 |
||
|
|
|
|
This example uses ASP.NET Routing to implement friendly URLs. Examples of the mappings that the application handles are: http://samplesite/userid/1234 - http://samplesite/users.aspx?userid=1234 This example uses querystrings and avoids any requirement to modify the code on the aspx page. Step 1 - add the necessary entries to web.config
Step 2 - add a routing table in global.asaxDefine the mapping from the friendly URL to the aspx page, saving the requested userid for later use.
Step 3 - implement the route handlerAdd the querystring to the current context before the routing takes place.
Code from users.aspxThe code on the aspx page for reference.
|
||
|
|
|
|
This is an alternative example that also uses ASP.NET Routing to implement friendly URLs. Examples of the mappings that the application handles are: http://samplesite/userid/1234 - http://samplesite/users.aspx?userid=1234 This example does not use querystrings but requires additional code on the aspx page. Step 1 - add the necessary entries to web.config
Step 2 - add a routing table in global.asaxDefine the mapping from the friendly URL to the aspx page, saving the requested userid for later use.
Step 3 - implement the route handlerPass the routing context, containing the parameter, to the page. (Note the definition of IRoutablePage)
Step 4 - Retrieve the parameter on the target pageNote the implemetation of IRoutablePage.
|
||
|
|
|
|
Here's another way of doing it using ASP.NET MVCFirst off, here's the controller code with two actions. Index gets a list of users from the model, userid gets an individual user:
Here's the Index.asp view, it uses an ActionLink to create links in the correct format:
And here's the userid.aspx view which displays an individual's details:
And finally for completeness, here's the model code:
|
||
|
|
|
|
thats for .net 3.5 . what about 2.0 ? |
||
|
|
|
|
Use IIS7's URL Rewrite Module if you have the option available. http://www.iis.net/extensions/URLRewrite |
||
|
|
|
|
I've been using a URL rewriter by Intelligencia: It was so easy to configure - maybe an hour to get it all up and running. Very few problems with it... I'd recommend it, but I should mentioned I've not tried any other ones. Good luck! |
||
|
|