What Is ASPNET_WP.exe?
What Is The Use Of It?
In Which Place Inproc Session Stored ?
Explain Session State ?
Answer Posted / anetcoder
For faster execution of ASP.NET applications that are
primarily based to be hosted on IIS servers, the
aspnet_wp.exe comes into picture. This file (aspnet_wp.exe)
is actually the ASP.NET worker process. The worker process
is introduced to actually share the load on the IIS, so
that application domains and other services may be
maintained by a single worker process.
The aspnet_wp.exe worker process is a part of the Microsoft
ASP.NET framework, and it is responsible for most of the
technical processes in the ASP.NET framework. There may be
multiple instances of ASP.NET worker process running on IIS
6 (a process running as inetinfo.exe), depending on
multiple application pools. The worker process handles all
the requests passed to the ASP.NET framework, so we may say
that its actually the main engine that handles all requests
pertaining to ASPNET. For example, when a request for
an .aspx page is recieved by the IIS server, the dll called
aspnet_isapi.dll passes this request to the aspnet_wp.exe
worker process.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the various types of validation controls provided by asp.net?
What is the use of execute non query in asp.net?
Explain why datareader is useful?
Why session is used in asp.net?
How can we call webservices in Banking Applications? and where we are using it?
What is the difference between custom web user control and a custom web server control?
What is mvc in asp.net interview question? : Asp.Net MVC
To display data in the combo box, prior to setting the Data Source, what kind of property on a Combo Box do you set with a column name?
Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?
Can we override the enablepartialrendering property of the scriptmanager class?
Contrast OOP and SOA. What are tenets of each ?
Explain weak typing and strong typing.
Explain the use of duration attribute of @outputcache page directive.
Can anyone please tell me that the question posted on this website are Sufficient for the interview with 2+ year experience in .net
What is the good practice to implement validations in aspx page?