Project Description

What can we do when we find the bugs in ASP.NET MVC? May be we can build our own implementations to EXTEND the framework and provide workarounds, but I prefer to make patch for it - especially for the design issues.

We would:
What we have done:

Type Before After Breaking Changes Date
B thread-unsafe DefaultControllerFactory thread-safe DefaultControllerFactory classes inherited from DefaultControllerFactory and overrided its methods Sep. 15th, 2009
B WebFormView always renders to HttpContext.Current WebFormView renders to the TextWriter specified code dependent on ViewPage.RenderView or ViewUserControl.RenderView Sep. 15th, 2009
D extensions always render html to Response.Output extensions render html to the TextWriter exposed by helpers Sep. 16th, 2009

B - Bug
D - Design
E - Extensions