在我的视图模型中,我有一个属性:
[required] [MaxLength(4)] [DisplayName("CVC")] public int BillingCvc { get; set; }
在我看来,我使用它像这样:
@Html.TextBoxFor(x => x.BillingCvc,new { size = "4",maxlength = "4" })
当我发布表单我得到这个错误信息:
Unable to cast object of type 'System.Int32' to type 'System.Array'.
解决方法
问题是您使用的类型为int的MaxLength。
编辑:你;可能在寻找Range(int,int)