ASP.NET MVC HttpModule Registration Under IIS Integrated Mode vs. Classic Mode
Posted by: Jeffrey Palermo,
on 09 Jun 2009 |
View original | Bookmarked: 0 time(s)
Context In many applications, I find the development team needs to have some bit of configuration code run at the very beginning, before any other code. In a web site on ASP.NET, we have the Global.asax file that has an Application_Start method. In an ASP.NET MVC app, we register routes and do other things before the first request is served by the application. One of the common start-up tasks my teams need to do is configuration NHibernate: setting up the configuration, creating...