Exemple #1
0
 public ActionResult ListStudent()
 {
     if (Session["username"] != null)
     {
         ViewBag.ListStudent = StudentActions.listStudents();
     }
     else
     {
         return(RedirectToAction("Login", "Account"));
     }
     return(View());
 }