UpdatePanel.Render(HtmlTextWriter) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises the Render(HtmlTextWriter) event.
protected public:
override void Render(System::Web::UI::HtmlTextWriter ^ writer);
protected internal override void Render (System.Web.UI.HtmlTextWriter writer);
override this.Render : System.Web.UI.HtmlTextWriter -> unit
Protected Friend Overrides Sub Render (writer As HtmlTextWriter)
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.