Hi tandem ,
Your page http://peritaciones.tandemcr.com/pruajaxuploader/default.aspx works fine on my IE 9 browser.
If your ie using the "Quirks" mode, please change it to others and try again. (F12-->Document Mode)
Another way is disable the silverlight upload mode when the user using the IE 9 browser.
Please try the example below, it should works for you.
- <%@ Page Language="C#" %>
-
- <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- </head>
-
- <script runat="server">
- protected override void OnLoad(EventArgs e)
- {
- if (Request.UserAgent.IndexOf("MSIE 9") != -1)
- {
- uploader1.SetAdvancedOption(UploaderAdvancedOption.NoSilverlight, "true");
- }
-
- base.OnLoad(e);
- }
- </script>
-
- <body>
- <form id="Form1" runat="server">
- <CuteWebUI:UploadAttachments ID="uploader1" runat="server">
- </CuteWebUI:UploadAttachments>
- </form>
- </body>
- </html>
Regards,
Ken