Last week Microsoft The Netherlands held another great edition of the Developer Days. With a fantastic line-up of speakers and a smooth organization I guess everyone must have enjoyed it. I know I had a good time and hope you did as well. Thanks to those of you who attended any of my sessions. I have...
Routing in .NET 3.5 SP1 differs from regular request handling in many ways. Here's a quick outline how routing works: Routes define some URL matching pattern and are configured/held in an ordered list accessible through RouteTable.Routes Incoming requests pass through the UrlRoutingModule that will...
Related to my previous post on dynamic images , a long way back I wrote a two-part article for the now deceased (paid) website ASPToday . It was about a HttpHandler implementation that would generate a thumbnail image from an existing image. The handler was accompanied by a server control that would...
You can find a nice release of the ASP.NET team for dynamically generated images for web applications on the Codeplex website. Others have already blogged about this, such as Scott Hanselman and David Hayden , so I'm not going to repeat that. I do want to add some information to this though. It's...
The ASP.NET MVC Framework lets Controller actions perform the actual logic for the coordination of work between the (domain) model and the views of the web application. The actions themselves can be filtered if you want to. There are a couple of sample implementations out there that show you how you...