Exemple #1
0
        // GET: Exam/Edit/5
        public ActionResult Edit(string id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Exam_tbl exam_tbl = db.Exam_tbl.Find(id);

            if (exam_tbl == null)
            {
                return(HttpNotFound());
            }
            ViewBag.Q01       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q01);
            ViewBag.Q02       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q02);
            ViewBag.Q03       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q03);
            ViewBag.Q04       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q04);
            ViewBag.Q05       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q05);
            ViewBag.Q06       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q06);
            ViewBag.Q07       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q07);
            ViewBag.Q08       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q08);
            ViewBag.Q09       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q09);
            ViewBag.Q10       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q10);
            ViewBag.Course_ID = new SelectList(db.Course_tbl, "ID", "Name", exam_tbl.Course_ID);
            return(View(exam_tbl));
        }
Exemple #2
0
        public ActionResult DeleteConfirmed(int id)
        {
            Exam_tbl exam_tbl = db.Exam_tbl.Find(id);

            db.Exam_tbl.Remove(exam_tbl);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Exemple #3
0
 public ActionResult Edit([Bind(Include = "exam_id,subject_id,exam_title")] Exam_tbl exam_tbl)
 {
     if (ModelState.IsValid)
     {
         db.Entry(exam_tbl).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.subject_id = new SelectList(db.Subject_tbl, "subject_id", "subject_title", exam_tbl.subject_id);
     return(View(exam_tbl));
 }
Exemple #4
0
        public ActionResult Edit(Exam_tbl exam_tbl)
        {
            if (ModelState.IsValid)
            {
                var question = new List <Question_tbl>();
                if (exam_tbl.Type == "Quiz")
                {
                    exam_tbl.Q06 = null; exam_tbl.Q07 = null; exam_tbl.Q08 = null; exam_tbl.Q09 = null;
                    exam_tbl.Q10 = null;

                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q01).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q02).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q03).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q04).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q05).FirstOrDefault());
                }
                else
                {
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q01).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q02).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q03).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q04).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q05).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q06).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q07).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q08).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q09).FirstOrDefault());
                    question.Add(db.Question_tbl.Where(q => q.Q_ID == exam_tbl.Q10).FirstOrDefault());
                }
                // Adding total mark of each question to the exam
                exam_tbl.Total_Mark = 0;
                for (int i = 0; i < question.Count; i++)
                {
                    exam_tbl.Total_Mark += question[i].Total_Mark;
                }

                db.Entry(exam_tbl).State = EntityState.Modified;
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }
            ViewBag.Q01       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q01);
            ViewBag.Q02       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q02);
            ViewBag.Q03       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q03);
            ViewBag.Q04       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q04);
            ViewBag.Q05       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q05);
            ViewBag.Q06       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q06);
            ViewBag.Q07       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q07);
            ViewBag.Q08       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q08);
            ViewBag.Q09       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q09);
            ViewBag.Q10       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q10);
            ViewBag.Course_ID = new SelectList(db.Course_tbl, "ID", "Name", exam_tbl.Course_ID);
            return(View(exam_tbl));
        }
Exemple #5
0
        // GET: /Exam/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Exam_tbl exam_tbl = db.Exam_tbl.Find(id);

            if (exam_tbl == null)
            {
                return(HttpNotFound());
            }
            return(View(exam_tbl));
        }
Exemple #6
0
        // GET: /Exam/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Exam_tbl exam_tbl = db.Exam_tbl.Find(id);

            if (exam_tbl == null)
            {
                return(HttpNotFound());
            }
            ViewBag.subject_id = new SelectList(db.Subject_tbl, "subject_id", "subject_title", exam_tbl.subject_id);
            return(View(exam_tbl));
        }
Exemple #7
0
        public ActionResult Details(string id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Exam_tbl exam_tbl = db.Exam_tbl.Find(id);

            if (exam_tbl == null)
            {
                return(HttpNotFound());
            }
            var st = db.Student_tbl.FirstOrDefault(m => m.Email == User.Identity.Name);
            //check if student registered in this course of exam
            var  reg          = db.RegisteredCourses_tbl.Find(st.ID);
            bool isregistered = false;

            if (reg.Course01 == id || reg.Course02 == id || reg.Course03 == id || reg.Course04 == id || reg.Course05 == id || reg.Course06 == id ||
                reg.Course07 == id)
            {
                isregistered = true;
            }
            var pretended_ans_ID = st.ID + id;
            var ans = db.Answer_tbl.FirstOrDefault(m => m.Ans_ID == pretended_ans_ID);
            var res = db.Result_tbl.FirstOrDefault(m => m.StudentID == st.ID && m.Exam_ID == id);
            //calculate the difference in time
            //TimeSpan difftm = exam_tbl.AvailabilityTime.Value - DateTime.Now;
            int diff = DateTime.Compare(exam_tbl.AvailabilityTime.Value, DateTime.Now);

            if (diff < 0 && ans == null && isregistered)
            {
                //create res and ans paper and leave it blank
                var result = new Result_tbl();
                result.Exam_ID   = id;
                result.ID        = "R0" + db.Result_tbl.Count().ToString();
                result.StudentID = st.ID;
                result.CourseID  = exam_tbl.Course_ID;
                result.Title     = exam_tbl.Type;
                //create answer paper
                var Ans = new Answer_tbl()
                {
                    Ans_ID   = st.ID + id,
                    Exam_ID  = id,
                    Stu_Code = st.ID
                };

                Ans.Ans_1 = string.Empty;
                Ans.Ans_2 = string.Empty;
                Ans.Ans_3 = string.Empty;
                Ans.Ans_4 = string.Empty;
                Ans.Ans_5 = string.Empty;

                if (exam_tbl.Type != "Quiz")
                {
                    Ans.Ans_6  = string.Empty;
                    Ans.Ans_7  = string.Empty;
                    Ans.Ans_8  = string.Empty;
                    Ans.Ans_9  = string.Empty;
                    Ans.Ans_10 = string.Empty;
                }
                db.Result_tbl.Add(result);
                db.Answer_tbl.Add(Ans);
                db.SaveChanges();
                return(RedirectToAction("Index", "Result"));
            }
            if (ans != null || res != null || isregistered == false)
            {
                return(RedirectToAction("Index", "Result"));
            }
            return(View(exam_tbl));
        }
Exemple #8
0
        public ActionResult Create(Exam_tbl exam_tbl)
        {
            if (ModelState.IsValid)
            {
                var question = new List <Question_tbl>();

                question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q01).FirstOrDefault());
                exam_tbl.Q01 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q01).FirstOrDefault().Q_ID;
                question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q02).FirstOrDefault());
                exam_tbl.Q02 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q02).FirstOrDefault().Q_ID;
                question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q03).FirstOrDefault());
                exam_tbl.Q03 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q03).FirstOrDefault().Q_ID;
                question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q04).FirstOrDefault());
                exam_tbl.Q04 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q04).FirstOrDefault().Q_ID;
                question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q05).FirstOrDefault());
                exam_tbl.Q05 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q05).FirstOrDefault().Q_ID;

                if (exam_tbl.Type == "Quiz")
                {
                    exam_tbl.Q06 = null; exam_tbl.Q07 = null; exam_tbl.Q08 = null; exam_tbl.Q09 = null;
                    exam_tbl.Q10 = null;
                }
                else
                {
                    question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q06).FirstOrDefault());
                    exam_tbl.Q06 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q06).FirstOrDefault().Q_ID;
                    question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q07).FirstOrDefault());
                    exam_tbl.Q07 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q07).FirstOrDefault().Q_ID;
                    question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q08).FirstOrDefault());
                    exam_tbl.Q08 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q08).FirstOrDefault().Q_ID;
                    question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q09).FirstOrDefault());
                    exam_tbl.Q09 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q09).FirstOrDefault().Q_ID;
                    question.Add(db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q10).FirstOrDefault());
                    exam_tbl.Q10 = db.Question_tbl.Where(q => q.Ques_Title == exam_tbl.Q10).FirstOrDefault().Q_ID;
                }
                // Adding total mark of each question to the exam
                exam_tbl.Total_Mark = 0;
                for (int i = 0; i < question.Count; i++)
                {
                    exam_tbl.Total_Mark += question[i].Total_Mark;
                }
                exam_tbl.ReleaseTime = DateTime.Now;
                db.Exam_tbl.Add(exam_tbl);
                db.SaveChanges();
                // Add notification
                return(RedirectToAction("Create", "Notification", new
                {
                    mthd = "Index",
                    cntlr = "Exam",
                    course_id = exam_tbl.Course_ID,
                    subject = "New Exam is added for Course ",
                    role_not = "Student"
                }));
                //return RedirectToAction("Index");
            }
            var lec = db.Lecturer_tbl.FirstOrDefault(m => m.Email == User.Identity.Name);

            if (lec == null)
            {
                return(HttpNotFound());
            }

            ViewBag.Q01       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q01);
            ViewBag.Q02       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q02);
            ViewBag.Q03       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q03);
            ViewBag.Q04       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q04);
            ViewBag.Q05       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q05);
            ViewBag.Q06       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q06);
            ViewBag.Q07       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q07);
            ViewBag.Q08       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q08);
            ViewBag.Q09       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q09);
            ViewBag.Q10       = new SelectList(db.Question_tbl, "Q_ID", "Ques_Title", exam_tbl.Q10);
            ViewBag.Course_ID = new SelectList(db.Course_tbl.Where(m => m.Prof == lec.ID || m.Assistant == lec.ID), "ID", "Name");
            return(View(exam_tbl));
        }