2012年5月1日
摘要: 首先随便写一个实体类 public class Student { public string Name { get; set; } } 然后添加两个action public ActionResult InsertStudent() { return View(new Student()); } 阅读全文
posted @ 2012-05-01 00:08 Byron_2015 阅读(262) 评论(0) 推荐(1) 编辑