Page_prerender

  • Thread starter Thread starter Ashish
  • Start date Start date
A

Ashish

Hi

I have been using Page_Load event for a long time . But never used
Page_Prerender. I have seen in articles tht whtever u can do in Page_Load
can be done in Page_Prerender also.But wht are the things which should be
done in Page_prerender ?

Thanx
Ashish
 
I would only use PreRender if I absolutely have to. It's useful if you
have any adjustments to make to controls after the Load and DataBind
events but before the runtime saves the viewstate and renders the
controls.
 
Back
Top