ControlAdapter.EndRender Method
.NET Framework 3.0
Called after the rendering of a control. In a derived adapter class, generates closing tags that are required by a specific target but not needed by HTML browsers.
Namespace: System.Web.UI.Adapters
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
protected void EndRender ( HtmlTextWriter writer )
protected internal function EndRender ( writer : HtmlTextWriter )
Not applicable.
Parameters
- writer
The HtmlTextWriter containing methods to render the target-specific output.
The EndRender method is called just after the Render method, and is used to perform target-specific postprocessing after the rendering of the control.
Use the EndRender method in combination with the BeginRender method to ensure opening and closing tag consistency.
Notes to Inheritors: When you inherit from the ControlAdapter class, the EndRender base method calls the EndRender method. Thus, overrides of the EndRender method should call the EndRender base method only if its processing is in addition to, rather than instead of, the HtmlTextWriter.EndRender method.Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: