Thursday, 19 February 2015
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-
Subscribe to:
Posts (Atom)
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...
-
What is ArrayList in C#? The ArrayList collection is similar to the Arrays data type in C#. The biggest difference is the dynamic natur...
-
ASP.NET (B) What’ is the sequence in which ASP.NET events are processed ? Following is the sequence in which the events occur :-...
-
Q -1) What is an Object and a Class? Ans: A Class is an encapsulation of properties and methods that are used to represent a real-ti...