HtmlTextWriter.AddAttribute Method (String, String, HtmlTextWriterAttribute)
.NET Framework (current version)
Adds the specified markup attribute and value, along with an HtmlTextWriterAttribute enumeration value, to the opening tag of the element that the HtmlTextWriter object creates with a subsequent call to the RenderBeginTag method.
Assembly: System.Web (in System.Web.dll)
protected virtual void AddAttribute( string name, string value, HtmlTextWriterAttribute key )
Parameters
- name
-
Type:
System.String
A string containing the name of the attribute to add.
- value
-
Type:
System.String
A string containing the value to assign to the attribute.
- key
-
Type:
System.Web.UI.HtmlTextWriterAttribute
An HtmlTextWriterAttribute that represents the attribute.
Use the AddAttribute overload of the AddAttribute(String, String, HtmlTextWriterAttribute) method only when inheriting from the HtmlTextWriter class. It enables you to create new name and key pairs for attributes.
.NET Framework
Available since 1.1
Available since 1.1
Show: