BaseValidator.AddAttributesToRender(HtmlTextWriter) Method

Definition

Adds the HTML attributes and styles that need to be rendered for the control to the specified HtmlTextWriter object.

protected:
 override void AddAttributesToRender(System::Web::UI::HtmlTextWriter ^ writer);
protected override void AddAttributesToRender (System.Web.UI.HtmlTextWriter writer);
override this.AddAttributesToRender : System.Web.UI.HtmlTextWriter -> unit
Protected Overrides Sub AddAttributesToRender (writer As HtmlTextWriter)

Parameters

writer
HtmlTextWriter

An HtmlTextWriter that represents the output stream to render HTML content on the client.

Remarks

The AddAttributesToRender method is used to render the attributes of the control in the HTML tag for the control. This method is typically overridden by control developers in derived classes to insert the appropriate attributes and styles to the HtmlTextWriter output stream for a control.

Notes to Inheritors

When overriding the AddAttributesToRender(HtmlTextWriter) method, be sure to call the corresponding method in the base class. Otherwise, the attributes contained in the base class will not be rendered.

Applies to

See also