aspnet-4074-components-html-editor-concepts-content-filtering-and-validation-content-element-filtering.md
The ASPxHtmlEditor allows you to automatically filter content elements with the following properties:
You can specify filter rules for the following elements: tags, attributes, and style attributes.
For different element types, ASPxHtmlEditor has a property that lists filtered elements and a property that specifies the filter mode:
Set the filter mode properties to one of the following values:
This code sample demonstrates how to specify the following settings for content element filter:
All cellspacing and cellpadding attributes should be removed from the editor’s content.
All tags except a, p, span, img, ul, li, table, tr, and td should be removed from the editor content.
<dx:ASPxHtmlEditor ID="HtmlEditor" runat="server">
<SettingsHtmlEditing>
<ContentElementFiltering AttributeFilterMode="BlackList" Attributes="cellspacing, cellpadding" TagFilterMode="WhiteList" Tags="a, p, span, img, ul, li, table, tr, td" />
</SettingsHtmlEditing>