public ActionResult GetStuMsg(string msg)
 {
     ViewBag.stumsg = stu.GetStuInfo(msg);
     if (ViewBag.stumsg.Count != 0)
     {
         return(View());
     }
     else
     {
         return(Content("信息有误"));
     }
 }