how can i do URL rewriting in asp.net. i am doing through <urlrewrites> <rule> <url>/Details_(.*)_([0-9]*)\.aspx</url> <rewrite>/ProductPage.aspx</rewrite> </rule> </urlrewrites> but its not working. plz any one can help
this is what I used: <urlMappings enabled="true"> <add mappedUrl="~/home.aspx" url="~/index.aspx?pid=01" /> <add mappedUrl="~/faq.aspx" url="~/index.aspx?pid=02" /> <add mappedUrl="~/contact.aspx" url="~/index.aspx?pid=03" /> <add mappedUrl="~/test.aspx" url="~/index.aspx?pid=04" /> </urlMappings> this shows the url on the right and people can still save it in the favorites....
Another option would be to use IIS 7 url rewrite module: learn.iis.net/page.aspx/460/using-url-rewrite-module/ or you could use ASP.NET MVC asp.net/mvc/