I work for county government and have developed a CMS using RTE. I need to be able to record the file names of images inserted into departments' pages. Here's what I have:
Protected Sub Uploader_FileUploaded(Sender As Object, args As RTE.UploadImageEventArgs) Handles Editor1.UploadImage
Dim ImgfileName As String = CType(args.FileName, String)
[SQL Insert statement... ]
End Sub
The routine above does not fire when an image is uploaded from the image upload dialog page. What event will allow me to record image file names? Editor Save click event?