Posted by Alin Irimie
on March 12, 2010
The final release of ASP.NET MVC 2 is now available for VS 2008/Visual Web Developer 2008 Express with ASP.NET 3.5. You can download and install it from the following locations:
Download ASP.NET MVC 2 using the Microsoft Web Platform Installer
Download ASP.NET MVC 2 from the Download Center
The final release of VS 2010 and Visual Web Developer 2010 will have ASP.NET MVC 2 built-in – so you won’t need an additional install in order to use ASP.NET MVC 2 with them. Continue reading…
Posted by Alin Irimie
on June 10, 2009
Microsoft released ASP .NET MVC for Visual Studio 2010 Beta 1, you can find the installer on CodePlex. Many of the new Visual Studio 2010 features intended to support the TDD workflow fit very nicely with ASP.NET MVC, which ScottGu will describe in an upcoming blog post.
If you run into problems with the intaller, try out this troubleshooting guide by Jacques, the developer who did the installer work and do provide feedback.
You’ll notice that the installer says this is ASP.NET MVC 1.1, but as the readme notes point out, this is really ASP.NET MVC 1.0 retargeted for Visual Studio 2010. The 1.1 is just a placeholder version number. The version number was bumped to avoid runtime conflicts with ASP.NET MVC 1.0. All of this and more is described in the Release Notes… Continue reading…
Posted by Alin Irimie
on May 18, 2009
If you haven’t heard yet, Visual Studio 2010 Beta 1 is now available for MSDN subscribers to download. It will be more generally available on Wednesday.
You can find a great whitepaper which describes what is new for web developers in ASP 4 which is included.
One thing you’ll notice is that ASP.NET MVC is not included in Beta 1. Right now, if you try and open an MVC project with VS 2010 Beta 1, you’ll get some error message about the project type not being supported. The easy fix for now is to remove the ASP.NET MVC ProjectTypeGuid entry as described by this post.
Microsoft is working hard to have an out-of-band installer which will install the project templates and tooling for ASP.NET MVC which works with VS2010 Beta 1 sometime in June on CodePlex.
(via Phil Haak’s blog)
Posted by Alin Irimie
on April 29, 2009
The book written by Phil Haack, Scott Hanselman, Rob Conery, and Scott Guthrie is in stock at Amazon.com.
You can find the first chapter as a series of HTML articles. This is a great series which walks through the construction of the NerdDinner website. It touches upon most of the day-to-day aspects of ASP.NET MVC that you’ll want to know. It’s a great way to start understanding how the pieces largely fit together.
The rest of the book is for those who want to drill deep into the details of how the framework works. If you’re looking for reasons not to buy the book, see Rob’s post.
Posted by Alin Irimie
on April 02, 2009
ASP.NET MVC is a free, fully supported, Microsoft product that enables developers to easily build web applications using a model-view-controller pattern. ASP.NET MVC provides a “closer to the metal” web programming option for ASP.NET. It enables full control over HTML markup and URL structure, and facilitates unit testing and a test driven development workflow.
Microsoft is releasing the ASP.NET MVC source code under the Microsoft Public License (MS-PL). MS-PL is an OSI-approved open source license. The MS-PL contains no platform restrictions and provides broad rights to modify and redistribute the source code. You can read the text of the MS-PL at: http://www.opensource.org/licenses/ms-pl.html. More about MVC … Continue reading…
Posted by Alin Irimie
on January 28, 2009
This is cool. Yesterday Microsoft released RC1 of ASP .NET MVC. Check it out here. The RC1, which offers several new capabilities and bug fixes, is feature-complete. The final release is slated to ship next month barring any critical issues in the RC1, according to a blog posting by Scott Guthrie, corporate vice president of Microsoft’s developer division.
The ASP.NET MVC RC1 release provides a new Model-View-Controller (MVC) framework on top of the existing ASP.NET 3.5 runtime. This means that developers can take advantage of the MVC design patterns to create their Web Applications which includes the ability to achieve and maintain a clear separation of concerns (the UI or view from the business and application logic and backend data), as well as facilitate test driven development (TDD). Continue reading…
Posted by Alin Irimie
on November 03, 2008
During the PDC sessions about Windows Azure features, lots of the code samples presented were using the new ASP .NET MVC style projects. It was really interesting to find out that oficially, ASP.NET MVC projects are NOT supported on Windows Azure. They’re not supported, but they can be used as long as you know the tricks and tweaks you need to do in order to make it work. I hope the ASP .NET MVC team will come up with a write up on this soon. Meanwhile you can ask Phil Haak, the guy in charge of the ASP .NET MVC what to do when you want to use ASP .NET MVC with Windows Azure.