Re: Capture file names of images

  •  08-14-2015, 9:46 AM

    Re: Capture file names of images

    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 

View Complete Thread