Ejemplo n.º 1
0
        public ActionResult ModifyPwd(Int64 stuId)
        {
            ViewBag.stuid = stuId;
            tb_student stu = stuBll.GetStudentInfo(stuId);

            return(View());
        }
Ejemplo n.º 2
0
        public JsonResult GetStudentInfo()
        {
            List <Student> listStd = stdntbll.GetStudentInfo();

            return(Json(new { data = listStd }, JsonRequestBehavior.AllowGet));
        }