HTML Editor for ASP.NET AJAX
Save Event
Server ReferenceWinthusiasm.HtmlEditorHtmlEditorSave
Event handler called when the Save toolbar button is clicked.
Declaration Syntax
C#
Remarks
When the toolbar Save button is clicked, the editor makes an asynchronous postback with the saved text. Attaching an event handler to this event allows the text to be saved to a persistent store.
Examples
Attach to the event declaratively in the HtmlEditor tag:
CopyC#
OnSave = "Editor_Save"
Handle the event:
CopyC#
protected void Editor_Save(object sender, HtmlEditor.SaveEventArgs e)
{
    DataStore.StoreHtml(e.Text);
}

Assembly: Winthusiasm.HtmlEditor (Module: Winthusiasm.HtmlEditor) Version: 2.3.0.0 (2.3.0.0)