布衣天使

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
      将Action动作中传递的FormCollection转变成对应的实体,可以使用Controller的TryUpdateModel()方法。

 

  1. public ActionResult Create(FormCollection collection)  
  2. {  
  3.     try  
  4.     {  
  5.         if (ModelState.IsValid)  
  6.         {  
  7.             var student = new Student();  
  8.             //在这里转换  
  9.             TryUpdateModel<Student>(student, collection);  
  10.             dalStudent.Add(student);  
  11.             return RedirectToAction("Index");  
  12.         }  
  13.         else  
  14.             return View();  
  15.     }  
  16.     catch  
  17.     {  
  18.         return View("Create");  
  19.     }  
posted on 2016-06-30 10:13  布衣天使  阅读(724)  评论(0编辑  收藏  举报