Pages

Advertisement

Sunday, October 28, 2007

What’s a bubbled event?

When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of its constituents.

What’s the difference between Codebehind="MyCode.aspx.cs" and

CodeBehind is relevant to Visual Studio.NET only.

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

System.Web.UI.Page.Culture

Where does the Web page belong in the .NET Framework class hierarchy?

System.Web.UI.Page

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.