Skip to main content
A newer version of this page is available. .

ASPxHtmlEditor.CorrectHtml(String) Method

Validates and corrects the passed HTML code based upon the settings specified by the ASPxHtmlEditor.SettingsHtmlEditing property.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v18.2.dll

Declaration

public static string CorrectHtml(
    string html
)

Parameters

Name Type Description
html String

A string value that specifies the HTML code to process.

Returns

Type Description
String

A string value that is the resulting validated HTML code.

Remarks

Use the CorrectHtml method to process any required HTML code to make it valid, safe and compliant with the specified document type (via the HtmlEditorHtmlEditingSettings.AllowedDocumentType property): XHTML 1.0 Transitional, HTML5, or both. The resulting HTML code is always kept safe, since the method removes all potentially harmful code - unknown tags and attributes, script elements, client-side event handlers and URLs with script content. Automatic validation also helps to maintain the HTML code validity by correcting invalid tag hierarchies and changing invalid attribute values.

To learn more, see the HTML Validation topic.

See Also