//批量删除用户
 public ActionResult DelUser()
 {
     UserSystem.Business.User bllUser = new Business.User();
     bool flag = false;
     var ids = Request.Form["ids"];
     //批量删除(where id in ({0}))
     flag = bllUser.DeleteList(ids);
     return Content(flag.ToString());
 }