IAttributeAccessor.SetAttribute Method
.NET Framework 3.0
When implemented by a class, designates an attribute and its value to assign to the ASP.NET server control.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example demonstrates a possible implementation of the SetAttribute method.
// Implement the SetAttribute method for the control. When
// this method is called from a page, the control's properties
// are set to values defined in the page.
public void SetAttribute(String name, String value1)
{
this.get_ViewState().set_Item(name, value1);
} //SetAttribute
Community Additions
ADD
Show: