Hi,
It will fire event "UploadImage", you can try the code below, it will changes the upload image name to "cutesoft.jpg".
Protected Sub Editor1_UploadImage(sender As Object, args As UploadImageEventArgs)
args.FileName="cutesoft.jpg"
End Sub
Regards,
Ken