Createchildcontrols, ensurechildcontrols, rendercontrol, render, renderchildren

Source: Internet
Author: User

The ensurechildcontrols () method determines whether a control set has been generated. If not, the createchildcontrols () method is called.

 

When a page is loaded into the view status (loadviewstaterecursive), you must call the loadviewstaterecursive (Object savedstate) method. Within the page, you must call the arraylist childstate. In loadchildviewstatebyid, findcontrol (string ID) the findcontrol (string ID) method first calls ensurechildcontrols () and determines whether the createchildcontrols () method has been called.

 

The ensurechildcontrols () method is called when the page is in the pre-rendering phase (prerenderrecursiveinternal.

 

Implementation of the rendercontrol, render, and renderchildren methods in the control class
Public void rendercontrol (htmltextwriter writer)

{

If (visilble)

Render (writer );

}

Protected virtual void render (htmltextwriter writer)

{

Renderchildren (writer );

}

Protected virtual void renderchildren (htmltextwriter writer)

{

Foreach (control C in controls)

C. rendercontrol (writer );

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.