Hello, thanks for the help, but could you tell me how to fire the server side UploadCompleted?
Here is what I have:
My Control on the page:
<CuteWebUI:UploadAttachments runat="server" ID="UploadAttachments1" InsertText="Click to select Files" OnUploadCompleted="Uploader_UploadCompleted" > </CuteWebUI:UploadAttachments>
My function on server side
void Uploader_UploadCompleted(object sender, UploaderEventArgs args)
{
doSomthingWithFiles();
}
I get a "does not contain a definition for 'Uploader_UploadCompleted'" error message.
Thanks for the help