我使用Uploadify在ASP.NET MVC应用程序中上传文件。
控制器:
public ActionResult Upload(HttpPostedFileBase file)
{
List<string> validIDs, invalidIDs;
if (file.ContentLength > 0)
{ //do something
}
}
上传代码(在.ascx文件中):
$(document).ready(function () {
$("#file_upload").uploadify({
'uploader': '/Scripts/uploadify/uploadify.swf',
'script': '/XYZ/Upload',
'cancelImg': '/Scripts/uploadify/cancel.png',
'fileExt': '*.jpg;*.gif;*.png;*.bmp;*.htm;*.html;*.zip',
'fileDesc': '*.jpg;*.gif;*.png;*.bmp;*.htm;*.html;*.zip',
'auto': true,
'multi': false,
'sizeLimit': 1048576, //1 MB
'buttonText': 'Upload Files'
}
});
});
&#39;&#39;在控制器动作中始终返回NULL。我错过了什么?
答案 0 :(得分:6)
替换:
public ActionResult Upload(HttpPostedFileBase file)
使用:
public ActionResult Upload(HttpPostedFileBase fileData)
Uploadify
默认使用fileData
名称。如果您愿意,可以在设置中更改它:fileDataName: 'file'
。另请查看following post。