public ActionResult _UpdateStudent(long studentId)
        {
            Students s = new Students();

            if (ModelState.IsValid)
            {
                s = BusinessRegistrar.GetStudentDetail(studentId);
            }
            return(PartialView(s));
        }