I have a big, fat, legacy ASP.NET WebForms application with big, fat, legacy URLs:
/ViewDocument.aspx?documentId=72143&noRedirect=1&someOtherCrapThatJustSeemsToGoOnForever=AndEver
What is the simplest way to implement pretty URLs in WebForms using ASP.NET 3.5? Is there anything in ASP.NET 4 that will make this easier?
Should I implement URL rewriting using an HttpModule?