我在我的MVC3中使用SWFUpload,program.It在IE和Chrome.But中运行良好,我的文件不能在FireFox.It中上传,甚至不会进入上传操作。在我的程序中,当我在一个测试程序中使用first.And时,用户应该登录SWFUpload,这是用户不需要登录的,它也工作得很好。谁能告诉我如何解决这个问题?这是我的代码:
Js:
swfupload1 = new SWFUpload({
upload_url: '@Url.Action("Upload")',
post_params: { "name": "value" },
file_size_limit: "200000000",
file_types: "*.jpg;*.gif;*.png;*.jpeg",
file_types_description: "",
file_upload_limit: "1",
file_queue_limit: "1",
file_queue_error_handler: fileQueueError,
file_dialog_complete_handler: fileDialogComplete,
file_queued_handler: fileQueued,
upload_progress_handler: uploadProgress,
upload_error_handler: uploadError,
upload_success_handler: uploadSuccess,
upload_complete_handler: uploadComplete,
upload_start_handler: uploadStart,
button_image_url:'@Url.Content("~/Swfupload/images/XPButtonNoText2_160x22.png")',
button_placeholder_id: "spanButtonPlaceholder1",
button_width: 42,
button_height: 22,
button_text: '<span class="buttonCss">选择</span>',
button_text_style: ".buttonCss { font-family: Helvetica, Arial, sans-serif; font-size: 14pt; } .buttonSmall { font-size: 10pt; }",
button_text_top_padding: 1,
button_text_left_padding: 5,
button_cursor: SWFUpload.CURSOR.HAND,
button_action: SWFUpload.BUTTON_ACTION.SELECT_FILE,
flash_url: '@Url.Content("~/Swfupload/swfupload.swf")',
custom_settings: { upload_target: "divFileProgressContainer1" },
debug: false
});控制器:
[HttpPost]
public ActionResult Upload(HttpPostedFileBase filedata)
{
if (null != filedata)
{
filedata.SaveAs(Server.MapPath("/File/Coverurl"+fileData.FileName));
}
return Json("");
}发布于 2013-02-26 13:51:35
我建议感兴趣的人在这里看看解决方案:http://www.cnblogs.com/rupeng/archive/2012/01/30/2332427.html。
https://stackoverflow.com/questions/15063570
复制相似问题