Raises the RenderChildren(HtmlTextWriter) event.
Syntax
CSharp
VisualBasic
Protected Overrides Sub RenderChildren ( _
writer As HtmlTextWriter _
)
ManagedCPlusPlus
protected:
virtual void RenderChildren (
HtmlTextWriter^ writer
) override
JSharp
Parameters
- writer (HtmlTextWriter)
An HtmlTextWriter object that represents the output stream for rendering HTML content.
Remarks
The RenderChildren(HtmlTextWriter) method is used by control developers to extend the functionality of the UpdatePanel control.
The RenderChildren(HtmlTextWriter) method writes the rendered content of the UpdatePanel control to the browser by using the supplied HtmlTextWriter object. When you override the RenderChildren(HtmlTextWriter) method in a derived class, make sure to call the RenderChildren(HtmlTextWriter) method of the base class so that the child controls of the UpdatePanel control are rendered.
Assembly: System.Web.Extensions (Module: System.Web.Extensions)