A quick way to host the ASP.NET runtime with ASP.NET 2.0
Posted by: Rick Strahls WebLog,
on 24 Mar 2006 |
View original | Bookmarked: 0 time(s)
In ASP.NET 2.0 runtime hosting there is a change in recommended objects that are used to get an instance of the ASP.NET runtime fired up. Specificially it looks like the preferred way to host the runtime is by using an ApplicationManager object to instantiate the runtime as opposed to using the ApplicationHost object.
ApplicationManager is actually an object that sits ontop of all running ASP.NET AppDomains and can do things like shut them all down or check for idle status. But other...