The editor HTML Filter allows you to accept HTML input from your users, filter it to make sure it contains only an allowed set of tags, attributes and values and then display it without leaving yourself open to XSS holes. AttrBlackList property allows you set a list of html attributes that will be removed from content sources.

Namespace: RTE
Assembly: RichTextEditor (in RichTextEditor.dll) Version: 8.0.0.0 (8.0.0.0)

Syntax

C#
public string AttrBlackList { get; set; }
Visual Basic
Public Property AttrBlackList As String
	Get
	Set
Visual C++
public:
property String^ AttrBlackList {
	String^ get ();
	void set (String^ value);
}

See Also