Hi Guys,
Im trying to upload multiple files, upload is working, however AttachementAdded method seems to be called 1 extra time.
So in my case I am uploading 2 files - 1.jpg and 2 jpg.
protected
void Attachments1_AttachmentAdded(object sender, CuteWebUI.AttachmentItemEventArgs args)
method called 3 times so when I display what gets uploaded e.g.
Response.Write(strFullFileName + "<br>"); I get this:
1.jpg
1.jpg
2.jpg
Thanks for your help in advance
Dima