Code render blocks: When rendered in asp.net page life cycle

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

when are code render blocks rendered in asp.net page life cycle?
what method does the code render block rendering?

thanks!
ingo
 
the render blocks are converted to code at the compile pass. the generated
code (except callbacks) is run during FrameworkInitialize, which is called
before any event processing. This is also when all the parsed (those defined
in the aspx page source) asp controls are created.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top