Main Content RSS FeedRecent Articles

Where do you store the information about the user’s locale? »

System.Web.UI.Page.Culture

What namespace does the Web page belong in the .NET Framework class hierarchy? »

System.Web.UI.Page

When during the page processing cycle is View State available? »

After the Init() and before the Page_Load(), or OnLoad() for a control.

What methods are fired during the page load? »

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 as HTML
Unload() - when page finishes loading.

What’s the difference between Response.Write() and Response.Output.Write()? »

Response.Output.Write() allows you to write formatted output.

Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process. »

inetinfo.exe is the Microsoft 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 to the actual worker process aspnet_wp.exe.

Page 283 of 283« First...«279280281282283