Exemplo n.º 1
0
 public ActionResult StudentDetail(string studentId)
 {
     this.init();
     JxLib.StudentController studentController = new JxLib.StudentController();
     System.Collections.Hashtable item = studentController.getUserByStudentId(studentId);
     ViewData["item"] = item;
     ViewData["open_menu"] = "驾校管理";
     return View();
 }