Asp.net проблема разбиения отчета на страницы crystal report
Привет,
Я запускаю отчет Crystal от ASP.NET
Когда я нажимаю кнопку "предыдущий", "следующий", "экспорт" или "печать" - полная страница повторно загружается при каждом щелчке.
Как избежать повторной загрузки страницы?
Спасибо,
Сохраб
Что я уже пробовал:
.
<pre lang="C#"> protected void Page_PreInit(object sender, EventArgs e) { ReportDocument crystalReport = new ReportDocument(); if (Session["report1"] == null) { crystalReport.Load(Server.MapPath("~/CrystalReports01.rpt")); DataSet dsCustomers = GetData("select * from ACS"); crystalReport.SetDataSource(dsCustomers); Session["report1"] = crystalReport; } else { crystalReport = (ReportDocument)Session["report1"]; } CrystalReportViewer1.ReportSource = crystalReport; }</pre>