我正在使用Uploadify在ASP.NET MVC应用程序中上传文件。

Controller :

public ActionResult Upload(HttpPostedFileBase file)
        {
            List<string> validIDs, invalidIDs;
            if (file.ContentLength > 0)
            { //do something
            }
        }

Uploadify代码(在.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'
}
    });
});

Controller 操作中的"file"始终返回NULL。我想念什么?

最佳答案

代替:

public ActionResult Upload(HttpPostedFileBase file)

和:
public ActionResult Upload(HttpPostedFileBase fileData)
Uploadify默认使用fileData名称。如果需要,可以在设置中进行更改:fileDataName: 'file'。还要看看following post

10-05 20:49
查看更多