HTML Editor for ASP.NET AJAX

Professional Edition
HtmlEditor MessageBox Method

Displays a message box with heading, html message, and OK button.

Namespace: Winthusiasm.HtmlEditor

Syntax
MessageBox(heading, html, iconUrl)
Parameters
TermDefinition
headingThe heading to display.
htmlThe html to set in the message box.
iconUrlAn optional Url for a 21x20 image in the title bar.

Return Value
None.

Remarks
Use the MessageBox method to display a message box.

Examples
First get a reference to the editor:
var editor = $find('<%= Editor.ClientID %>');
Then use it to display the message box:
editor.MessageBox("My Title", "This is my message");