Thursday 19 February 2015

C#


ASP.NET


ASP.NET
 (B) What’ is the sequence in which ASP.NET events are processed ?
 Following is the sequence in which the events occur :-
Page_Init.
  Page_Load.
Control events
Page_Unload event.
Page_init event only occurs when first time the page is started, but Page_Load occurs in subsequent request of the page.
(B) In which event are the controls fully loaded ?
Page_load event guarantees that all controls are fully loaded. Controls are also accessed in Page_Init events but you will see that viewstate is not fully loaded during this event.

LIST BOX-

What is ArrayList in C#?

What is ArrayList in C#? The ArrayList collection is similar to the Arrays data type in C#. The biggest difference is the dynamic natur...