如何使用Data Annotation验证IEnumerable <httppostedfiles> </httppostedfiles>

时间:2014-05-12 11:14:02

标签: c# asp.net-mvc validation

我按照此tutorialHttpPostedFileBase上创建验证,如果我使用HttpPostedFileBase,则会有效,但如果我更改为IEnumerable<HttpPostedFileBase>以上传多个文件,并提交表单ModelState.IsValid始终为false。我上传了.png文件,大小为914字节。如何使用数据注释来验证多个文件上传?

我的模特

public class BillingViewModel
{
     [Required]
     public long BillingID { get; set; }    
     public IEnumerable<TimeKeeper> TimeKeepers { get; set; }    
     [Required]
     [ValidateFile]
     public IEnumerable<HttpPostedFileBase> PostedFiles { get; set; }
}

ValidateFile.cs:

public class ValidateFileAttribute : ValidationAttribute
    {
        public override bool IsValid(object value)
        {
            int MaxContentLength = 1024 * 1024 * 3; //3 MB
            string[] AllowedFileExtensions = new string[] { ".jpg", ".gif", ".png", ".pdf" };
            var file = value as HttpPostedFileBase;

            if (file == null)
            {
                return false;
            }
            else if (!AllowedFileExtensions.Contains(file.FileName.Substring(file.FileName.LastIndexOf('.'))))
            {
                ErrorMessage = "Please upload Your Photo of type: " + string.Join(", ", AllowedFileExtensions);
                return false;
            }
            else if (file.ContentLength > MaxContentLength)
            {
                ErrorMessage = "Your Photo is too large, maximum allowed size is : " + (MaxContentLength / 1024).ToString() + "MB";
                return false;
            }
            else
            {
                return true;
            }
        }
    }

2 个答案:

答案 0 :(得分:2)

看起来你正在将属性转换为错误的类型。

改变这个:

var file = value as HttpPostedFileBase;

为:

var files = value as IEnumerable<HttpPostedFileBase>;

然后您可以遍历集合中的每个项目并验证每个文件的大小是否正确。

答案 1 :(得分:0)

你能做点什么吗

[Required]
public int? ListCount
{
 get {return PostedFiles == null || PostedFiles.Count()==0? (int?)null: PostedFiles.Count();}
}

Catch:无法在客户端工作