Hi nokturnal,
Question 1
Is that works for you? What version of your firefox/flash/silverlight?
Question 2
Please try the example below. the method FileUploaded should fire after each file uploaded.
- <%@ 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 UploadAttachments1_FileUploaded(object sender, UploaderEventArgs args)
- {
- label1.Text += args.FileName;
- label1.Text += "---";
- }
- </script>
-
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>Untitled Page</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <asp:Label ID="label1" runat="server"></asp:Label>
- <CuteWebUI:UploadAttachments ID="UploadAttachments1" runat="server" OnFileUploaded="UploadAttachments1_FileUploaded">
- </CuteWebUI:UploadAttachments>
- </form>
- </body>
- </html>
If you have more questions, you can contact me by mail directly.
Kenneth@CuteSoft.net
Regards,
Ken