Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Peter Agyekum Which are the different IIS isolation levels in ASP.NET? IIS has three level of isolation – LOW (IIS process) - In this, ASP.NET application and main IIS process run in same process. So, if any application crashes it will adversely affect the others too. Medium (Pooled) - In Medium pooled scenario the IIS and web application run in different process. So in this case there will be two processes process1 and process2. Process1 runs the IIS process and Process2 runs the Web application. High (Isolated) - Here every process runs under it’s own process. This consumes heavy memory but has highest reliability.
Related Topics