예제 #1
0
 // GET: UserManage
 public ActionResult userManage()
 {
     if (Session["loginName"] == null)
     {
         return(RedirectToAction("login"));
     }
     //用户的相关信息
     ViewBag.userkist = userManageService.GetAllUsers();
     return(View());
 }