Describe the role of inetinfo.exe, aspnet_isapi.dll
andaspnet_wp.exe in the page loading process.
Answer / ganesh
inetinfo.exe is theMicrosoft IIS server running, handling
ASP.NET requests among other things.When an ASP.NET request
is received (usually a file with .aspx extension), the ISAPI
filter aspnet_isapi.dll takes care of it by passing the
request tothe actual worker process aspnet_wp.exe.
Is This Answer Correct ? | 7 Yes | 2 No |
What is the use of placeholder control? Can we see it at runtime?
What is base class of button control in .net?
How may clustered index we can create in table?
What is ispostback property?
What is web.config file ?
Any alternative to avoid name collisions other then Namespaces?
How to Deploy a project?
when to use webservice and when to use remotong diff between them
What is the maximum amount of memory any single process on Windows can address? Is this different than the maximum virtual memory for the system? How would this affect a system design?
To make Cache item dependent on a file,directory or other cached item ,you should create an instance of which clause?
Who can consume WebAPI?
will this code works fine? or will it gives error? Object obj=5; int i=6; i=i+obj;