I'm currently migrating a large website from WebForms to MVC. It's going to be a long process, I can't go through every page and migrate it right away, nor do I want to.
One of the issues I have is, in the old web app, we were doing some URL Rewriting for the WebForms stuff like so:
from: http://sample.com/id/123/name/Something/Page.aspx
to: http://sample.com/Page.aspx?id=123&name=Something
Basically it's: http://sample.com/[QueryString]/Page.aspx
where the querystring is broken up and seperated by "/".
Is there anyway to do the samething with MVC Routing to support my legacy pages?
I've checked around SO and I saw interesting stuff, but nothing that seemed to directly answer my question. If I missed something, I'm sorry for the double post. Thank you in advance.
I'm willing to code each Route individually if I have to. Although I'm still not sure what I'd need to do there.