HTML Editor for ASP.NET AJAX Professional Edition
UploadNotification Event
Server ReferenceWinthusiasm.HtmlEditorHtmlEditorUploadNotification
Event handler called after an upload in the Image Browser, successful or not.
Declaration Syntax
C#
public event HtmlEditor..::.UploadNotificationHandler UploadNotification
Remarks
Attach to this event to monitor or respond to upload activity in the Image Browser.
Examples
Attach to the event declaratively in the HtmlEditor tag:
CopyC#
OnUploadNotification="Editor_UploadNotification"
Handle the event:
CopyC#
protected void Editor_UploadNotification(object sender,
                                         HtmlEditor.UploadNotificationArgs e)
{
    if (e.UploadStatus.status == 
        Winthusiasm.HtmlEditor.ImageBrowser.UploadStatus.UploadStatus.StatusType.Success)
    {
        // Do something.
    }
}

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