Tag Archives: mvc

Extreme makeover: routing edition

This was going to be a full on post, but it appears the next preview of the MVC bits will do a good chunk of what I was writing up.  So for posterity, here’s the general routing flow in the current ASP.NET MVC release:

Define your routes in RouteTable
PostResolveRequestCache event in the UrlRoutingModule passes every [...]

ASP.NET MVC routing limitations

The ASP.NET MVC stuff is pretty exciting to me, since I’ve been rolling my own pseudo-MVC-with-pretty-URL applications since the dawn of time (time being defined as “the release of ASP.NET”).  The new MVC tools should help me do all the same things, but in a more standard way.
Last night, I set about trying to make [...]