Posts

Showing posts from January, 2014

What changes have been made on the PMBOK 5th Edition?

Image
Without going into details, here’s a list of the major changes:   Addition of a new knowledge area called ‘Stakeholder Management’ (going from 9 to 10 Knowledge areas)  

ASP.Net Page Life Cycle Events:

ASP.Net Page Life Cycle Events: At each stage of the page life cycle, the page raises some events, which could be coded. An event handler is basically a function or subroutine, bound to the event, using declarative attributes like Onclick or handle. Following are the page life cycle events: PreInit .  PreInit is the first event in page life cycle. It checks the IsPostBack property and determines whether the page is a postback. It sets the themes and master pages, creates dynamic controls and gets and sets profile property values. This event can be handled by overloading the OnPreInit method or creating a Page_PreInit handler. Init .  Init event initializes the control property and the control tree is built. This event can be handled by overloading the OnInit method or creating a Page_Init handler. InitComplete .  InitComplete event allows tracking of view state. All the controls turn on view-state tracking. LoadViewState .  LoadViewState event allows loading view stat