ClientScriptManager.RegisterExpandoAttribute Method (String, String, String)
Registers a name/value pair as a custom (expando) attribute of the specified control given a control ID, attribute name, and attribute value.
Assembly: System.Web (in System.Web.dll)
public void RegisterExpandoAttribute( string controlId, string attributeName, string attributeValue )
Parameters
- controlId
-
Type:
System.String
The Control on the page that contains the custom attribute.
- attributeName
-
Type:
System.String
The name of the custom attribute to register.
- attributeValue
-
Type:
System.String
The value of the custom attribute.
The RegisterExpandoAttribute method registers a name/value pair as a custom (expando) attribute on the specified Control. The expando attribute is set dynamically from JavaScript to preserve XHTML compatibility for the rendered control's markup. Quotes and backslashes in the custom (expando) attribute's values are escaped. If you do not want to escape quotes and backslashes, call the RegisterExpandoAttribute overload method and set the encode parameter to false.
If the expando attribute is not found or the control to add the expando attribute to is not found, the client script is still emitted, but it will not affect the control.
Available since 2.0