After reading serveral articles about url rewrite with aspnet on this forum I still have some unanswered questions. I understand the concept but havent seen examples of functionality I like to have. Hope someone can help me out with:

  1. dynamicly add new rules when i add new record in database a new rewrite url needs to be created. for example a record with name of a city has to redirect request to city.aspx?cityId=1

url: http://mysite.com/rotterdam/ shows: http://mysite.com/city.aspx?cityID=1

what is a good way to save theses rules? (xml file or load in memory) what is best way to handle requests : global.asax or http module?

link|improve this question
feedback

1 Answer

Which version of ASP.net are you targeting?

Version 3.5 and above you can utilise Routing (even with webforms) below that you can't :)

Assuming that you can use routes, you can do the following in the global asax...

protected void Application_Start(object sender, EventArgs e) { RegisterRoutes(RouteTable.Routes); }

public static void RegisterRoutes(RouteCollection routes) { routes.Add(new Route("/cities/{cityname}",new CityRouteHandler())); }

where cityroutehandler is like the customroutehandler described in the answer here

Friendly URLs for ASP.NET

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.