Top questions

Post

New Post


Find by name:

Question Answer
What is the use of worker process in asp net? Answer # Application Pool. Worker Process: Worker Process (w3wp.exe) runs the ASP.Net application in IIS. This process is responsible for managing all the request and response that are coming from the client system. All the ASP.Net functionality runs under the scope of the worker process.
What is ViewState? ViewState is used to retain the state of server-side objects between page post backs.
What is web garden? Answer # Application pool is used to separate sets of IIS worker processes and enables a better security, reliability, and availability for any web application. Now, by default, each and every Application pool contains a single worker process. Application which contains the multiple worker process is called “Web Garden”.



Back to HomePage