ControlAdapter.BeginRender(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.
Called prior to the rendering of a control. In a derived adapter class, generates opening tags that are required by a specific target but not needed by HTML browsers.
protected public:
virtual void BeginRender(System::Web::UI::HtmlTextWriter ^ writer);
protected internal virtual void BeginRender (System.Web.UI.HtmlTextWriter writer);
abstract member BeginRender : System.Web.UI.HtmlTextWriter -> unit
override this.BeginRender : System.Web.UI.HtmlTextWriter -> unit
Protected Friend Overridable Sub BeginRender (writer As HtmlTextWriter)
Parameters
- writer
- HtmlTextWriter
The HtmlTextWriter containing methods to render the target-specific output.
Remarks
The BeginRender method is called just before the Render method, and is used to perform target-specific preprocessing before the rendering of the control.
Use the BeginRender method in combination with the EndRender method to ensure opening and closing tag consistency.
Notes to Inheritors
When you inherit from the ControlAdapter class, the BeginRender(HtmlTextWriter) base method calls the BeginRender() method. Thus, overrides of the BeginRender(HtmlTextWriter) method should call the BeginRender(HtmlTextWriter) base method only if its processing is in addition to, rather than instead of, the BeginRender() method.