问题描述
- mvc4中,添加model中的属性
- 在mvc4中,我往model类中,添加了一个属性,但是显示不出来,不起作用。(添加了time这个属性。)
public int id { get; set; }
[Required]
[StringLength(16MinimumLength = 6 ErrorMessage = ""{0}不能低于{2} 且不能超过{1}"")]
public string name { get; set; }
[Required]
[RegularExpression(@""[A-Za-z0-9._%+-]+@[A-Za-z0-9]+.[A-Za-z]{24}"" ErrorMessage = ""{0}的格式不正确"")]
public string email { get; set; }
//[Required]
public string time { get; set; }
public string content { get; set; }
时间: 2024-10-31 22:21:33