Dive into the archives.
- 59 Days of Code: StructureMap Dependency Injection with ASP.NET MVC
To continue on my blog posts discussing some of my research and technologies I am going to utilize for the 59 Days of Code competition here in Fresno, I wanted to touch on the use of Dependency Injection. Dependency Injection is a technique to supply an instantiated external dependency to another component of your code. [...]
- Telerik Embraces Open Source with New Extentions for ASP.NET MVC
One of my biggest issues with ASP.NET MVC was it’s lack of built-in controls similar to what ships with ASP.NET WebForms. This means when you want things like a TreeView or some sort of DataGrid you pretty much need to write it yourself. Well now it seems as though companies are starting to push some [...]
- Multiple Roles with Authorize Attribute using Enums in ASP.NET MVC
In MVC, if you have ever used the [Authorize] attribute you will know that there are two options of using it by decorating your controller or action. Either with pre-determined users: [Authorize(Users = "Bob, John")] public class OrdersController : Controller { } Or with pre-determined roles: [Authorize(Roles = "Admin, User")] public class OrdersController : Controller [...]

