public ActionResult QueryRemark(string stuno)
        {
            ViewBag.ProjectID = new SelectList(pb.GetProjects(), "ID", "ProjectName");
            int classid = sb.GetStudentModel(stuno).ClassID;

            ViewBag.ClassID = classid;
            ViewBag.StuNo   = stuno;
            return(View(new List <RemarkModel>()));
        }
        public ActionResult Perfect(string stuno)
        {
            var sm = sb.GetStudentModel(stuno);

            return(View(sm));
        }