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:
- 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?