On buttons selected index change i have generated a report, report's first page it displayed proper with correct result but when i navigate to second page crystal report disappears what is the reason please let me know
protected void studentList_SelectedIndexChanged(object sender, EventArgs e) { int studentId = Convert.ToInt32(studentList.SelectedValue); ReportDocument report = new ReportDocument(); report.Load(Server.MapPath("StudentResume.rpt")); DataTable tbl_students; tbl_students = resumeManager.GetStudentListForCrystalRpt(studentId); report.SetDataSource(tbl_students); studentResumeCrViwer.ReportSource = report; // studentResumeCrViwer. }