Browse by Tags
All Tags »
MVC (RSS)
And you can get it from codeplex . Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Read More...
Great post by Scott presenting the new things one can expect to see in the next preview of ASP.NET MVC. This means that it's time to pick up where I left and go back to the internals of the MVC platform. Share this post: email it! | bookmark it! |
Read More...
The ASP.NET MVC team is in the final stages of finishing up a new "Preview 4" release that they hope to ship later this week. The Preview 3 release focused on finishing up a lot of the underlying core APIs and extensibility points in ASP.NET
Read More...
Today I’m going to start posting some personal rumblings about the MVC framework. In fact, I haven’t started developing real apps with it, so I’m starting this series to force me look at it since in my current job I’m no longer working with web apps.
Read More...
I’ve just noticed that I didn’t put up a resume of the routing series. Here’s the list of associated posts: The MVC routing assembly – part I The MVC routing assembly – part II The MVC routing assembly – part III The MVC routing assembly – part IV The
Read More...
In the previous posts, we’ve explored the internals of the routing assembly. If you’ve downloaded the ASP.NET MVC preview 3 from codeplex , then you’ll find an interesting sample on how to reuse the routing assembly with a ASP.NET web forms app. If you’ve
Read More...
Today we’re going to discuss url partitioning. What’s url partioning? Well, I’m sure that you agree with me when I say that one of the greatest things about the routing assembly is that we can define parameters (or placeholders) on routes ? Here’s an
Read More...
Today we’re going to talk about one of the most important components of the System.Web.Routing assembly: the UrlRouting module. If you want to use the routing framework in your web applications, then you need to register this module on your web.config
Read More...
In my last post on this series, we've seen how we can use the RouteTable class to register all the routes available on a web application. I'd just like to add one more thing on the locking topic. As you might recall, we've seen that internally
Read More...
In the previous posts, we’ve talked about Routes . Today, we’re see how we can register the routes on a ASP.NET web application. Currently, a colecction of routes is represented through an element of type RouteCollection. If you fire up Reflector and
Read More...
In the last post , we’ve talked about several of the properties exposed by the Route class. Unfortunately, the post grew beyond my initial expectations, which meant that the writing time was exceeded before completing the analysis of this class. Today
Read More...
In my previous post , we’ve seen that all routes must implement the contract defined by the RouteBase class. As you might expect, the framework defines one implementation of that contract through the Route class. Currently, the Route class exposes the
Read More...
In these last 2 days I’ve been looking at the internals of the System.Web.Routing assembly. I’ve thought about writing some posts with several notes on how it works so that I have a future reference when I need it. Putting it here on my blog will make
Read More...
Last week I blogged about the ASP.NET MVC Preview 3 release . One important thing I forgot to mention about this release is that you can now use it with both Visual Studio 2008 as well as the free Visual Web Developer 2008 Express edition.
Read More...
From Scott Guthrie : This morning we released the Preview 3 build of the ASP.NET MVC framework. I blogged details last month about an interim source release we did that included many of the changes with this Preview 3 release. Today's build includes some
Read More...