ChtmlTextWriter.OnAttributeRender Method (String, String, HtmlTextWriterAttribute)
Determines whether the specified cHTML attribute and its value are rendered to the requesting page. You can override the OnAttributeRender method in classes that derive from the ChtmlTextWriter class to filter out attributes that you do not want to render on devices that support cHTML.
Assembly: System.Web (in System.Web.dll)
Protected Overrides Function OnAttributeRender ( name As String, value As String, key As HtmlTextWriterAttribute ) As Boolean
Parameters
- name
-
Type:
System.String
The cHTML attribute to render.
- value
-
Type:
System.String
The value assigned to name.
- key
-
Type:
System.Web.UI.HtmlTextWriterAttribute
The HtmlTextWriterAttribute associated with name.
Return Value
Type: System.Booleantrue to write the attribute and its value to the ChtmlTextWriter output stream; otherwise, false.
By default, the OnAttributeRender method prevents globally suppressed attributes that are listed in the GlobalSuppressedAttributes property and element-specific, suppressed attributes that are listed in the SuppressedAttributes property from being written to the output stream. You can override the behavior of the OnAttributeRender method in classes that are derived from the ChtmlTextWriter class.
The following code example demonstrates how to use a custom class that overrides the OnAttributeRender method to prevent the bgcolor attribute from being written to the cHTML output stream. It then calls the functionality that is provided by the base OnAttributeRender method from the ChtmlTextWriter class to ensure that its default behavior is used, too.
This code example is part of a larger example provided for the ChtmlTextWriter class.
' Override the OnAttributeRender method to ' not render the bgcolor attribute, which is ' not supported in CHTML. Protected Overrides Function OnAttributeRender(ByVal name As String, ByVal value As String, ByVal key As HtmlTextWriterAttribute) As Boolean If (String.Equals("bgcolor", name)) Then Return False End If ' Call the ChtmlTextWriter version of ' the OnAttributeRender method. MyBase.OnAttributeRender(name, value, key) End Function
Available since 2.0