I have an asp.net application and I need to do the following:
Assume that i have a page called page1.aspx, what i need is that:
when the user requests page1.aspx?id=1 to be redirected to http://myapp/books
when the user requests page1.aspx?id=2 to be redirected to http://myapp/movies
books and movies are virtual paths and I don't want to do this using web.config (rewite section) since this should be dynamic.
any help would be appreciated