Browse by Tags
All Tags »
MvcExtensions (
RSS)
When using the DisplayFor/EditorFor there has been built-in support in ASP.NET MVC to show localized validation messages , but no support to show the associate label in localized text, unless you are using the .NET 4.0 with Mvc Future. Lets a say you...
One of the thing that people often complains is dependency injection in Action Filters. Since the standard way of applying action filters is to either decorate the Controller or the Action methods, there is no way you can inject dependencies in the action...
In the previous post , we have seen the BootstrapperTask which executes when the application starts and ends, similarly there are times when we need to execute some custom logic when a request starts and ends. Usually, for this kind of scenario we create...
[Special Note: I have just released SP1 Preview which contains the newly added Autofac Adapter and minor Windsor changes] In this post, I will show you how you can register your custom services in your preferred IoC container and how the MvcExtensions...
When you create a new ASP.NET MVC application you will find that the global.asax contains the following lines: namespace MvcApplication1 { // Note: For instructions on enabling IIS6 or IIS7 classic mode, // visit http://go.microsoft.com/?LinkId=9394801...
I am proud to announce the v1.0 of MvcExtensions (previously known as System.Web.Extensibility). There has been quite a few changes and enhancements since the last release . Some of the major changes are: The Namespace has been changed to MvcExtensions...
More Posts