UpdatePanel.Render(HtmlTextWriter) Method

Definition

Raises the Render(HtmlTextWriter) event.

C#
protected internal override void Render(System.Web.UI.HtmlTextWriter writer);

Parameters

writer
HtmlTextWriter

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

Remarks

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

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

Applies to

Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also