ASP.NET


What do you mean by Dedicated Application Pools ?
ASP.NET apps run under application pools. On top of the fact that full trust is given out in a dedicated application pool, memory consumption and CPU usage is kept inside the application pool and can be tracked. Furthermore, since variables are being registered within the application pool, and since the memory is isolated, there is more privacy.

The only aspect of the app pool that you can control from your control panel is the .NET framework version. By default, on the newer servers, the framework version is 4.0 and can be switched to 2.0 (3.5). On older servers, the default is 2.0 (3.5) and can be switched to 4.0.