UpdateProgress.Render(HtmlTextWriter) Method

Definition

Writes the rendered content of the UpdateProgress control to the browser by using the supplied HtmlTextWriter object.

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

Parameters

writer
HtmlTextWriter

An 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 UpdateProgress control.

The Render method writes the rendered content of the UpdateProgress control to the browser by using the supplied HtmlTextWriter object. When you override the Render method in a derived class, call the base class's Render method so that the child controls of the UpdateProgress 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