What are different IIS isolation levels supported in ASP.NET?

What are different IIS isolation levels supported in ASP.NET?

IIS has three level of isolation:-

LOW (IIS process):- In this main IIS process and ASP.NET application run in same process due to which if one crashes, the other is also affected.

Medium (Pooled):- In Medium pooled scenario the IIS and web application run in different process.

High (Isolated):- In high isolated scenario every process is running is there own process. This consumes heavy memory but has highest reliability.
ASP.NET Difference between Gridlayout and FlowLayout.
ASP.NET - Difference between Gridlayout and FlowLayout - GridLayout provides absolute positioning for controls placed on the page.....
Concept of Automatic Memory Management in ASP.NET
ASP.NET - Concept of Automatic Memory Management in ASP.NET - The .NET framework has introduced a concept called Garbage collector...
What is Finalizer in .NET?
What is Finalizer in .NET? - Finalizer in .NET are the methods that help in cleanup the code that is executed just before the object is garbage collected....
Post your comment