文件上传返回null

时间:2012-04-06 20:21:20

标签: c# jquery asp.net asp.net-mvc uploadify

我使用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。我错过了什么?

1 个答案:

答案 0 :(得分:6)

替换:

public ActionResult Upload(HttpPostedFileBase file)

使用:

public ActionResult Upload(HttpPostedFileBase fileData)

Uploadify默认使用fileData名称。如果您愿意,可以在设置中更改它:fileDataName: 'file'。另请查看following post