SWFUpload无法将文件上传到asp.net

时间:2009-08-19 12:10:15

标签: asp.net swfupload

我已将swfupload放到我的网站上,但在选择要上传的文件后,处理上传文件的页面没有收到文件。我假设swfupload没有将文件上传到服务器......

这是我在javascript /

中的简单代码

var swfu;

   window.onload = function() {
   var settings = 
            {
           file_size_limit: "1000", // 200 kb
           file_types: "*.jpg;*.gif;*.png",
           file_types_description: "Image Files",
           file_upload_limit: "10",
           file_queue_limit: "10",

           upload_url: "http://localhost:4158/Membership/ExportFromFlash.aspx?action=gadget",
           flash_url: "/Html_Data/Flash/swfupload.swf",
           button_width: "100",
           button_height: "20",
           button_placeholder_id: "swfuploadContainer",
           button_text: '<span>Upload your gadgets</span>',
           button_text_style: ".theFont { font-size: 8; }",
           button_text_left_padding: 12,

           upload_error_handler: uploadError,
           upload_success_handler : uploadSuccess
           }
           swfu = new SWFUpload(settings);
       };

       function uploadError(file, errorCode, message) {
           try {
               alert(message);
           } catch (ex) {
               alert("ASDF");
               this.debug(ex);
           } 
       }
       function uploadSuccess(file, serverData) {
           try {
               alert(serverData);
               //window.navigator("/Membership/GadgetDetails.aspx");
           } catch (ex) {
               alert("A33");
               this.debug(ex);
           }
       }

我使用visual studio .net调试页面,但它没有达到....

2 个答案:

答案 0 :(得分:0)

看起来上传网址仍然设置为localhost。

答案 1 :(得分:0)

如此answer中所述,Flash 9.x / 10.x不允许调用函数。因此,您必须显示Flash控件才能使其可单击。

Google Mail似乎将“附加文件”按钮设为普通超链接,但将(透明)Flash对象置于其顶部(按z顺序排列),以便用户看到 HTML超链接,但点击 flash对象。