background preloader

DotNet

Facebook Twitter

Links to my “Best of 2010” Posts. I hope everyone is having a Happy New Years! 2010 has been a busy blogging year for me (this is the 100th blog post I’ve done in 2010). Several people this week suggested I put together a summary post listing/organizing my favorite posts from the year. Below is a quick listing of some of my favorite posts organized by topic area: VS 2010 and .NET 4 Below is a series of posts I wrote (some in late 2009) about the VS 2010 and .NET 4 (including ASP.NET 4 and WPF 4) release we shipped in April: Visual Studio Below are some additional Visual Studio posts I’ve done (not in the first series above) that I thought were nice: Silverlight We shipped Silverlight 4 in April, and announced Silverlight 5 the beginning of December: Silverlight for Windows Phone 7 We shipped Windows Phone 7 this fall and shipped free Visual Studio development tools with great Silverlight and XNA support in September: We shipped ASP.NET MVC 2 in March, and started previewing ASP.NET MVC 3 this summer.

IIS and Web Server Stack Other. ScottGu's Blog. ASP.NET Page Life Cycle Overview. When an ASP.NET page runs, the page goes through a life cycle in which it performs a series of processing steps. These include initialization, instantiating controls, restoring and maintaining state, running event handler code, and rendering. It is important for you to understand the page life cycle so that you can write code at the appropriate life-cycle stage for the effect you intend. If you develop custom controls, you must be familiar with the page life cycle in order to correctly initialize controls, populate control properties with view-state data, and run control behavior code. The life cycle of a control is based on the page life cycle, and the page raises many of the events that you need to handle in a custom control. This topic contains the following sections: In general terms, the page goes through the stages outlined in the following table.

Some parts of the life cycle occur only when a page is processed as a postback. Reference Concepts Other Resources. ASP.Net master pages and controls load init order. Events in ASP.NET Master and Content Pages. The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location. Both master pages and content pages can contain event handlers for controls. For controls, events are handled locally—a control in a content page raises an event in the content page, and a control in the master page raises an event in the master page.

Controls events are not sent from the content page to the master page. The following is the sequence in which events occur when a master page is merged with a content page: The sequence of events in master and content pages rarely is important for you as page developer. Tri-State Checkbox using Javascript.