$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
HtmlEditor Dialog XHTML Validator in ASP.NET
Home > How to > HtmlEditor Dialogs XHTML Validator

Information to XHTML Validator Dialog

What is XHTML validator dialog? The xhtml validator dialog provided by the PerHtmlEditor control is designed to help user validate the current editor content by using the W3C XHTML Page. After the validation, the W3C service will return a compliancy report (which includes the information of validation result, the file name, file size, content type, encoding type, server information, root element and root namespace)within the editor dialog.
Why do we need to use the XHTML validator dialog? Without the Xhtml validator dialog, to validate the editor content, you have to copy the HTML content in another browser window manually. Thus, this dialog will eliminate some unnecessary actions that you make when you are trying to validate the xhtml content.
The picture attached below is used to represent the result of applying the xhtml validator dialog in html editor.

How to Enable XHTML Validator Dialog

In above section, we briefly introduce the functions and benefits of the html editor xhtml validator dialog. Then how to activate the xhtml validator dialog in the PerHtmlEditor Control using ASP.NET AJAX? Actually, the xhtml validator dialog can be easily enabled by simply declaring the Xhtml validator programmatically.
Following sample code is used to demonstrate how to add the xhtml validator dialog to html editor in aspx web page.

ASPX Code

<kettic:radeditor id="PerHtmlEditor1" runat="server" skin="Default">    
<Tools>
< kettic:EditorToolGroup>
< kettic:EditorTool Name="XhtmlValidator" Text="Xhtml Validator Dialog" />
</ kettic:EditorToolGroup>
</Tools>
</ kettic:radeditor>

C# Code

EditorToolGroup group1 = new EditorToolGroup();
PerHtmlEditor1.Tools.Add(group1);
EditorTool validator = new EditorTool("XhtmlValidator");
Group1.Tools.Add(validator);
Besides, if you want to define the xhtml validator dialog using C#.NET programming code, we can also help with that. Following C# code is used as a sample to guide you to create the xhtml validator dialog in html editor. If you have any question about this xhtml validator dialog, please feel free to contact us via E-mail.

Html Editor Dialogs Related Tutorials

Apart from this XHTML validator dialog, the PerHtmlEditor Control also provides developers with other popularly used dialogs. Here we recommend some tutorial links, following which you can find detailed guidance on how to add these various dialogs to the html editor in ASP.NET web application.
ASP.NET AJAX UI Controls