Dangers of the new ASP.NET MVC framework
An interesting article by Mads Kristensen.
I’ve been following the new ASP.NET MVC framework quite close lately because it looks so damn cool. Not only does it make your website testable in a much richer way, but it also adds abstraction between your different UI tiers. It can do these things because it uses a somewhat strict code separation principle like all MVC frameworks do.
So instead of just adding an .aspx page (with its code-behind file auto-inserted by Visual Studio) to your website, the MVC framework wants you to add a model and a controller as well. The .aspx along with the model and controller is highly abstracted so you can replace one of them easily without changing the others. We know this from the class libraries and components we’ve build for many years – something called low coupling.
- Microsoft Taps Zander To Head Visual Studio GroupMicrosoft has re-organized its developer division, tapping .NET Framework head Jason Zander to oversee the team that puts together Visual Studio, the company's flagship development environment. The move took place...
- New Microsoft MCPD examsIn case you missed it, last month Microsoft released four MCPD upgrade exams for Microsoft Visual Studio 2008 .NET Framework. And as the names imply, all are aimed at developers...
- OCS 2007 launch date confirmed!OCS 2007 will be officially launched October 16th - see details and link to webcast here: http://www.microsoft.com/presspass/press/2007/aug07/08-21UCGVCFMA.mspx?rss_fdn=Press%20Releases ...
- CompTIA i-Net+ RetirementCompTIA has announced that it will retire their i-Net+ certification on December 31st, 2007. There will not be an update, it is a retirement. The certificaton will remain valid for...
- 70-301, Managing, Organizing, and Delivering IT Projects by Using Microsoft Solutions Framework 3.0 — 70-301: Project Management the Microsoft WayThis Microsoft Solutions Framework 3.0 exam is less technical, but requires some solid analytical thinking in order to pass. Even if you're an MSF practitioner, don't take this exam too...












