Contents tagged with MVC
-
Migrating ASP.NET MVC 2 applications to ASP.NET MVC 3 Preview 1
ASP.NET MVC 3 Preview 1 has just been released! More info on ScottGu's blog.
-
Migrating ASP.NET MVC 1.0 applications to ASP.NET MVC 2 RTM
ASP.NET MVC 2 RTM has just been released! More info on ScottGu's blog.
-
Migrating ASP.NET MVC 1.0 applications to ASP.NET MVC 2 Beta (updated!)
NOTE: There is an updated version of this tool that is compatible with ASP.NET MVC 2 RTM.
-
Migrating ASP.NET MVC 1.0 applications to ASP.NET MVC 2
NOTE: There is an updated version of this tool that is compatible with ASP.NET MVC 2 RTM.
-
ASP.NET MVC Release Candidate 2: I declare myself to be declarative!
Today is a happy day: we released ASP.NET MVC Release Candidate 2. We're getting ever-so-close to the final (RTM/RTW) release of ASP.NET MVC - it won't be long! We think we fixed all the highest priority issues so that everyone out there can build ASP.NET MVC applications without worrying that we're going to make some sudden changes that will break you. Please see Phil's blog post announcing the release.
-
Opening an ASP.NET MVC project without having ASP.NET MVC installed: The project type is not supported by this installation
Projects built with ASP.NET MVC are what are known as "flavored projects." This means that instead of being an entirely new project type, ASP.NET MVC projects merely extend a different kind of existing project type. Specifically, the projects extend the Web Application Project type.
-
Optimizing your route collection for URL generation in ASP.NET MVC (and more!)
If you're used ASP.NET MVC or ASP.NET Dynamic Data, you've using ASP.NET's new Routing feature. ASP.NET Routing is the feature that lets you easily create so-called "pretty" URLs. Pretty URLs are the ones that look the way you want them to look (e.g. ~/products/beverages), not the way your web application platform forces them to look (e.g. ~/products.aspx?categoryname=beverages).
-
Upcoming talks: Microsoft Tech Ed South Africa
In just a couple of weeks I'll be in Durban, South Africa presenting three sessions at Tech Ed. These are the sessions:
-
MVC: Unit testing controller actions that use TempData
-
MVC: Locking the RouteCollection
Since the advent of multithreaded programming, the responsibility of locking collections has always been a contentious issue. Who should lock the collection? When should it be locked? And for how long? The ASP.NET Routing feature that is used by the MVC framework involves a thread-safe collection that contains the list of the application's route definitions. Will your routes be safe? Continue reading to find out (on this amazing journey (into the depths of the RouteCollection)). How's that for a cheesy intro?