Event handler called after an upload in the Image Browser, successful or not.
| C# |
public event HtmlEditor..::.UploadNotificationHandler UploadNotification
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#
Handle the event:
CopyC#
OnUploadNotification="Editor_UploadNotification"protected void Editor_UploadNotification(object sender, HtmlEditor.UploadNotificationArgs e) { if (e.UploadStatus.status == Winthusiasm.HtmlEditor.ImageBrowser.UploadStatus.UploadStatus.StatusType.Success) { // Do something. } }