Hi Tarus,
Please test the example below. AjaxUploader work with a UpdatePanel and the method UploadCompleted works fine.
If you still get this issue, please create a simple page which can reproduce this issue and send it to
Kenneth@CuteSoft.net. I will check it and get back to you as soon as possible.
- <%@ Page Language="C#" %>
-
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
- <script runat="server">
-
- protected void uploader1_UploadCompleted(object sender, UploaderEventArgs[] args)
- {
- label1.Text = "upload complete fire";
- }
- </script>
-
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>Untitled Page</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:ScriptManager ID="ScriptManager1" runat="server">
- </asp:ScriptManager>
- <asp:UpdatePanel ID="updatePanel1" runat="server">
- <ContentTemplate>
- <CuteWebUI:Uploader ID="uploader1" runat="server" OnUploadCompleted="uploader1_UploadCompleted">
- </CuteWebUI:Uploader>
- <br />
- <asp:Label ID="label1" runat="server"></asp:Label>
- </ContentTemplate>
- </asp:UpdatePanel>
-
- </div>
- </form>
- </body>
- </html>
Regards,
Ken