コード例 #1
0
        public ActionResult ValidateStudent(int RollNumber, String DegreeTitle, String Session)
        {
            try
            {
                if (Request.Cookies["AdminType"].Value.ToString() != null)
                {
                    StudentDbLayer studentDBLayer = new StudentDbLayer();
                    studentDBLayer.validateStudent(RollNumber, DegreeTitle, Session);
                    studentDBLayer.DeleteFromAppliedTable(RollNumber, DegreeTitle, Session);
                    return(RedirectToAction("AppliedStudentList"));
                }

                else
                {
                    return(RedirectToAction("Login", "Admin"));
                }
            }
            catch
            {
                return(RedirectToAction("Login", "Admin"));
            }


            //return View();
        }
コード例 #2
0
        public ActionResult StudentLogin(Student student)
        {
            StudentDbLayer studentDbLayre = new StudentDbLayer();

            if (studentDbLayre.IsValid(student.RollNumber, student.DegreeTitle, student.Session, student.Password))
            {
                Student studentForCookie = new Student();

                studentForCookie = studentDbLayre.GetSpecificStudent(student.RollNumber, student.DegreeTitle, student.Session);

                Response.Cookies["StudentRollNumber"].Value       = studentForCookie.RollNumber.ToString();
                Response.Cookies["StudentRollNumber"].Expires     = DateTime.Now.AddDays(1);
                Response.Cookies["StudentDegreeTitle"].Value      = studentForCookie.DegreeTitle;
                Response.Cookies["StudentDegreeTitle"].Expires    = DateTime.Now.AddDays(1);
                Response.Cookies["StudentSession"].Value          = studentForCookie.Session;
                Response.Cookies["StudentSession"].Expires        = DateTime.Now.AddDays(1);
                Response.Cookies["StudentSection"].Value          = studentForCookie.Section;
                Response.Cookies["StudentSection"].Expires        = DateTime.Now.AddDays(1);
                Response.Cookies["StudentSemester"].Value         = studentForCookie.Semester.ToString();
                Response.Cookies["StudentSemester"].Expires       = DateTime.Now.AddDays(1);
                Response.Cookies["StudentMorningEvening"].Value   = studentForCookie.MorningEvening;
                Response.Cookies["StudentMorningEvening"].Expires = DateTime.Now.AddDays(1);

                return(RedirectToAction("PopulateStudentNoticeView", "SendNotice"));
            }
            else
            {
                ModelState.AddModelError("", "Login data is incorrect!");
            }

            return(View());
        }
コード例 #3
0
        public ActionResult StudentSignUp(FormCollection formcollection)
        {
            Student        appliedstudent = new Student();
            StudentDbLayer studentDBLayer = new StudentDbLayer();

            if (ModelState.IsValid)
            {
                appliedstudent.Name           = formcollection["Name"];
                appliedstudent.RollNumber     = Convert.ToInt32(formcollection["RollNumber"]);
                appliedstudent.DegreeTitle    = formcollection["DegreeTitle"];
                appliedstudent.Session        = formcollection["Session"];
                appliedstudent.Section        = formcollection["Section"];
                appliedstudent.Semester       = Convert.ToInt32(formcollection["Semester"]);
                appliedstudent.MorningEvening = formcollection["MorningEvening"];
                appliedstudent.Password       = formcollection["Password"];
            }

            try
            {
                studentDBLayer.AddStudent(appliedstudent);



                ViewBag.SuccessMessage = "Now wait for admin approval and then login";
                return(View());
            }

            catch
            {
                ViewBag.ErrorMessage = "Invalid Section or Session..!! Try Again or contact Admin";
                return(View());
            }
        }
コード例 #4
0
        public ActionResult AppliedStudentList()
        {
            try
            {
                if (Request.Cookies["AdminType"].Value.ToString() != null)
                {
                    StudentDbLayer studentDBLayer = new StudentDbLayer();

                    return(View(studentDBLayer.ListAppliedStudent()));
                }

                else
                {
                    return(RedirectToAction("Login", "Admin"));
                }
            }
            catch
            {
                return(RedirectToAction("Login", "Admin"));
            }
        }