Brian Mains

Catch me on linked in at: http://linkedin.com/in/brianmains, or follow me on twitter at: @brianmains.

Browse by Tags

All Tags » MVC (RSS)
Location Formats in ASP.NET MVC
ASP.NET MVC is a wonderful thing. One of the many great features is the ability to customize all of the .NET framework's code by swapping out one implementation and using another. One such instance is creating a custom view engine, which you can do...
Posted: Mon, Nov 16 2009 19:49 by bmains | with no comments
Filed under: ,
Telerik's Compressing and Combining Scripts in MVC
The latest Telerik MVC set of components features a ScriptRegistrar component that's responsible for compressing or combining scripts into a single file. This compression utility is very easy to implement: to setup this component, use the following...
Posted: Tue, Nov 10 2009 20:50 by bmains | with no comments
Filed under: ,
Working with Web Forms and MVC: Bridging the Gap - Context
I've spent some time figuring out how to bridge the gap between web forms and ASP.NET MVC style of development. Just because the UI works differently, doesn't mean the actual framework works in a different way. If you use .NET 3.5 SP 1 for both...
Posted: Sat, Nov 7 2009 11:02 by bmains | with 2 comment(s)
Filed under: ,
MVC Controller Context - Where does it come from?
The Controller class maintains a reference to the HttpContext property, and object of HttpContextBase. HttpContextBase is a great class because now we have an abstract way to replace default logic if needed (but generally that wouldn't be recommended...
Posted: Sat, Sep 12 2009 23:03 by bmains | with no comments
Filed under: ,