Control: ) { ; ; using (MAction action = new MAction("brain")) { MDataTable table = action.Select(id, pageSize, "order by id desc", out totalItems); PagedList<MDataRow> arts = new PagedList<MDataRow>(table.Rows,id,pageSize,…
MVC中通过Model在页面间传值使的程序开发变得更加的快捷,但是很多时候,我们在数据传递的时候为了确保数据的有效性,要对Model的相关属性做基本的数据验证. 不多说直接上个代码,Model的实体类 public class BadDebt { public int DebtId { get; set; } [Required(ErrorMessage = "不能为空!")] [RegularExpression("^\\w{1,20}$", ErrorMessa…