HtmlTextWriter.RegisterAttribute(String, HtmlTextWriterAttribute) Method

Definition

Registers markup attributes, whether literals or dynamically generated, from the source file so that they can be properly rendered to the requesting client.

protected:
 static void RegisterAttribute(System::String ^ name, System::Web::UI::HtmlTextWriterAttribute key);
protected static void RegisterAttribute (string name, System.Web.UI.HtmlTextWriterAttribute key);
static member RegisterAttribute : string * System.Web.UI.HtmlTextWriterAttribute -> unit
Protected Shared Sub RegisterAttribute (name As String, key As HtmlTextWriterAttribute)

Parameters

name
String

A string containing the name of the markup attribute to register.

key
HtmlTextWriterAttribute

An HtmlTextWriterAttribute that corresponds with the attribute name.

Remarks

The predefined attributes of the HTML markup language are registered by calls to the RegisterAttribute method when the first HtmlTextWriter object is created. Dynamic attributes can be registered by using the RegisterAttribute method at other times.

The registration table used by the RegisterAttribute method is static, so registration of attributes applies to all HtmlTextWriter objects on the host computer.

Applies to

See also