public ActionResult LoadTestInfo(TestCourseVM tcvm) { if (!CheckCookie()) return RedirectToAction("Index"); if (String.IsNullOrWhiteSpace(tcvm.title)) return RedirectToAction("NewTest"); tcvm.prof = Models.Professor.Get(Session["User"].ToString()); tcvm.getCourses(); tcvm.getTitles(); tcvm.getSections(tcvm.title); tcvm.GetBlackedOutDates(); tcvm.GetMaterialList(); return View("TestInfo", tcvm); }