ASP .Net
Asp.Net Faqs, Asp.Net interview questions,
Describe the role of inetinfo.exe, aspnet_isapi.dll and aspnet_wp.exe in the page loading process.
Nov 27th
inetinfo.exe is the Microsoft IIS server running, handling ASP.NET requests. 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 to the actual worker process aspnet_wp.exe.
What methods are fired during the page load?
Nov 27th
Init() – when the page is instantiated, Load() – when the page is loaded into server memory,PreRender() – the brief moment before the page is displayed to the user asHTML, Unload() – when page finishes loading.