public ActionResult editLeavesScreenShot(int id) { ApplyLeave obj = new ApplyLeave(); obj.editScreenShotTLList = ApplyLeave.editScreenSHotForEditing(id); var list = obj.getTypeOfLeave(); obj.TOL = obj.GetSelectListItem(list); Session["MSID"] = obj.MSID; //Session["FirstName"] = obj.FirstName; //Session["LastName"] = obj.LastName; Session["StartDate"] = obj.StartDate; Session["EndDate"] = obj.EndDate; Session["TypeOfLeaves"] = obj.TypeOfLeaves; Session["TotalLeaves"] = obj.TotalLeaves; Session["ID"] = id; return(View(obj)); }