UpdatePanel.RenderChildren(HtmlTextWriter) Method

Definition

Raises the RenderChildren(HtmlTextWriter) event.

protected public:
 override void RenderChildren(System::Web::UI::HtmlTextWriter ^ writer);
protected internal override void RenderChildren (System.Web.UI.HtmlTextWriter writer);
override this.RenderChildren : System.Web.UI.HtmlTextWriter -> unit
Protected Friend Overrides Sub RenderChildren (writer As HtmlTextWriter)

Parameters

writer
HtmlTextWriter

An HtmlTextWriter object that represents the output stream for rendering HTML content.

Remarks

The RenderChildren method is used by control developers to extend the functionality of the UpdatePanel control.

The RenderChildren method writes the rendered content of the UpdatePanel control to the browser by using the supplied HtmlTextWriter object. When you override the RenderChildren method in a derived class, make sure to call the RenderChildren method of the base class so that the child controls of the UpdatePanel control are rendered.

Applies to

See also