我正在使用 asp.net mvc 4 我在我的模型中使用 [maxlength(2)] 但它不适用于客户端验证我是 asp.net mvc 的新手。这是我的代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
namespace RestrauntsMVC.Models
{
public class Restraunts
{
public int id { get; set; }
[Required]
public string name { get; set; }
[Required]
[MaxLength(2),MinLength(1)]
public int rating { get; set; }
[Required]
public string location { get; set; }
}
}