Showing posts with label ASP.NET Interview Questions. Show all posts
Showing posts with label ASP.NET Interview Questions. Show all posts

Friday, May 17, 2013

ASP.NET Interview Questions

ASP.NET Interview Questions1.     Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.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.   2.        What’s the difference between Response.Write() andResponse.Output.Write()?...