HtmlTextWriter.RegisterAttribute(String, HtmlTextWriterAttribute) 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.
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.
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.