ASP.NET MVC
< Advanced Web Programming
< jproud86
Get flash to fully experience Pearltrees
Two weeks ago I blogged about a new MVC (Model View Controller) framework for ASP.NET that we are going to be supporting as an optional feature soon. It provides a structured model that enforces a clear separation of concerns within applications, and makes it easier to unit test your code and support a TDD workflow. It also helps provide more control over the URLs you publish in your applications, and can optionally provide more control over the HTML that is emitted from them.
By default, the ASP.NET MVC framework prevents you from submitting form data that contains potentially malicious content. This feature is called request validation.
Home / MVC 5 Minute Video
The last few weeks I have been working on a series of blog posts that cover the new ASP.NET MVC Framework we are working on.