Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Explain Page life cycle

Answers were Sorted based on User's Feedback



Explain Page life cycle..

Answer / shankar

While excuting the page, it will go under the fallowing
steps(or fires the events) which collectivly known as Page
Life cycle.
Page_Init -- Page Initialization
LoadViewState -- View State Loading
LoadPostData -- Postback data processing
Page_Load -- Page Loading
RaisePostDataChangedEvent -- PostBack Change Notification
RaisePostBackEvent -- PostBack Event Handling
Page_PreRender -- Page Pre Rendering Phase
SaveViewState -- View State Saving
Page_Render -- Page Rendering
Page_UnLoad -- Page Unloading

Is This Answer Correct ?    15 Yes 0 No

Explain Page life cycle..

Answer / ish rastogi

PreInit
# Check the IsPostBack property to determine whether this
is the first time the page is being processed.

# Create or re-create dynamic controls.

# Set a master page dynamically.

# Set the Theme property dynamically.

# Read or set profile property values.

Init
Raised after all controls have been initialized and any
skin settings have been applied. Use this event to read or
initialize control properties.

InitComplete
Raised by the Page object. Use this event for processing
tasks that require all initialization be complete.

PreLoad
Use this event if you need to perform processing on your
page or control before the Load event.

Load
Use the OnLoad event method to set properties in controls
and establish database connections.

LoadComplete
Use this event for tasks that require that all other
controls on the page be loaded.

PreRender
The PreRender event occurs for each control on the page.
Use the event to make final changes to the contents of the
page or its controls.

SaveStateComplete
Use this event perform tasks that require view state to be
saved, but that do not make any changes to controls.

Render
This is not an event; instead, at this stage of rocessing,
the Page object calls this method on each control. All
ASP.NET Web server controls have a Render method that writes
out the control's markup that is sent to the browser.

Unload
This event occurs for each control and then for the page.
In controls, use this event to do final cleanup for pecific
controls, such as closing control-specific database connections.

Is This Answer Correct ?    9 Yes 0 No

Explain Page life cycle..

Answer / vijay

init
load
prerender
unload

Is This Answer Correct ?    5 Yes 0 No

Explain Page life cycle..

Answer / urvashi sharma

While excuting the page, it will go under the fallowing
steps(or fires the events) which collectivly known as Page
Life cycle.
Page_Init -- Page Initialization
LoadViewState -- View State Loading
LoadPostData -- Postback data processing
Page_Load -- Page Loading
RaisePostDataChangedEvent -- PostBack Change Notification
RaisePostBackEvent -- PostBack Event Handling
Page_PreRender -- Page Pre Rendering Phase
SaveViewState -- View State Saving
Page_Render -- Page Rendering
Page_UnLoad -- Page Unloading

Is This Answer Correct ?    4 Yes 0 No

Explain Page life cycle..

Answer / nutan

Page_Init()-when page is first inistiated.
Page_Load()-when page is first loaded to server
Page_PreRender()-Few moment befor while html code is viewed
to user.
Page_unload()-Page is unloaded from server memory

Is This Answer Correct ?    3 Yes 1 No

Explain Page life cycle..

Answer / niraj bajaj bhadwaa

These answers explain only the page life cycle events and
or methods..

u shld explain as in... what happens when the page is
requested for the first time, abt fetching info from cache
from server back to client, etc...

Is This Answer Correct ?    0 Yes 0 No

Explain Page life cycle..

Answer / shankar

sorry, kavitha answer is wrong. There is no textchange when
loading a page

Is This Answer Correct ?    5 Yes 6 No

Explain Page life cycle..

Answer / kavitha

Init
loading
TextboxTextchanged
buttonclic
pageunload
pagedispose


The page is intialize the events,after that the page is
loading,after that controls is rised after page unloading
and pagedispose is removing the unnecessary objects

Is This Answer Correct ?    2 Yes 13 No

Post New Answer

More ASP.NET Interview Questions

Explain the difference between asp.net mvc and asp.net webforms

0 Answers  


can we call web service from the browser?

2 Answers   Keane India Ltd,


Is it possible to develop a single web application using ASP.NET webforms and ASP.MVC?

0 Answers  


What are different methods of session maintenance in asp.net?

0 Answers  


How would you implement inheritance using c#?

0 Answers  


What is view state and use of it ?

1 Answers  


How do you define authentication in Web.Config?

2 Answers   Patni,


What are the best practices to follow to secure connection strings in an ASP.NET web application?

0 Answers   MCN Solutions,


What is web configuration file and how to use in web application

0 Answers   MCN Solutions,


How about the security in Activex DLL and Activex EXE ?

0 Answers   DELL,


what is postback implementation?when pre-render event n init event is fired?

2 Answers   Ness Technologies,


Explain significance of routing? : asp.net mvc

0 Answers  


Categories