ASP.Net Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 841 Page Views: 

The ViewState is available during which phase of the processing lifecycle of ASP.net?



Posted By: Avi Date: 4 October 2010 06:59:19 AM
 Answer:

It is available after the Init() method and before the Page_Load() method.


Posted By: avibtech


Date: 4 October 2010 06:59:19 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image O0HXIS
Related Questions
ASP.Net : Name the methods which are fired while the page is being loaded?

Name the methods which are fired while the page is being loaded?

The following methods are fired:- 1. Init():- This event is fired when the page is instantiated. It....
Category: ASP.Net Date: 10/1/2010 4:17:19 PM
ASP.Net : Is it possible to apply an alternating color scheme  in a Reporter Control?

Is it possible to apply an alternating color scheme in a Reporter Control?

By using AlternatingItem template. The style properties of AlternatingItem template can be used to g....
Category: ASP.Net Date: 10/1/2010 9:45:19 AM
ASP.Net : Suppose a certain ASP.Net  function is executed on MouseOver  for a specific button, then where would you add an event handler?

Suppose a certain ASP.Net function is executed on MouseOver for a specific button, then where woul....

The MouseOver attribute is added to the button. The code is as follows:- Buuton_Name.Attributes.Add....
Category: ASP.Net Date: 10/1/2010 8:37:13 AM
ASP.Net : Assume a situation where one person is logged in and he leaves the system without logging off. Now the second person comes and try to log in his account. Now it is required that as soon the new person logs in the seesion of the first user automatically ge

Assume a situation where one person is logged in and he leaves the system without logging off. Now t....

The following two lines in the page load event of login page can help in solving this situation:- f....
Category: ASP.Net Date: 10/1/2010 8:20:14 AM
ASP.Net : In clent-side validation form which type of events are commonly used?

In clent-side validation form which type of events are commonly used?

Required Field Validator.
Category: ASP.Net Date: 10/1/2010 7:07:14 AM