public ActionResult ModifyPwd(Int64 stuId) { ViewBag.stuid = stuId; tb_student stu = stuBll.GetStudentInfo(stuId); return(View()); }
public JsonResult GetStudentInfo() { List <Student> listStd = stdntbll.GetStudentInfo(); return(Json(new { data = listStd }, JsonRequestBehavior.AllowGet)); }