<%@ Register Assembly="Obout.Ajax.UI" Namespace="Obout.Ajax.UI.HTMLEditor" TagPrefix="obout" %>
protected void editor_contentChanged(
object sender,
EventArgs e)
{
ScriptManager.RegisterClientScriptBlock(
this,
this.GetType(),
"Changed",
"alert('Content changed!');",
true);
}
...
<obout:Editor runat="server" Id="editor1" Height="400px" Width="100%" >
<EditPanel OnContentChanged="editor_contentChanged" />
</obout:Editor>