Hi,
On my crystal report page of vistual studio, there is paging(change page) at the top, if I want to add the paging at the bottom of report, how can I add it? Could you please tell me?
there is my code:
ConnectionInfo connectionInfo = new ConnectionInfo();
CrystalDecisions.CrystalReports.Engine.ReportDocument boReportDocument;
string rptFile = ((BaseApplicationPage)(this.Page)).Decrypt(this.Page.Request.QueryString["Name"]);
boReportDocument = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
boReportDocument.Load(Server.MapPath("~/Crystal/" + rptFile));
CrystalReportViewer1.ReportSource = boReportDocument;
connectionInfo.ServerName = "XXXXX";
connectionInfo.DatabaseName = "XXXXX";
connectionInfo.UserID = "XXXXX";
connectionInfo.Password = "XXXXX";
TableLogOnInfos tableLogOnInfos = CrystalReportViewer1.LogOnInfo;
foreach (TableLogOnInfo tableLogOnInfo in tableLogOnInfos)
{
tableLogOnInfo.ConnectionInfo = connectionInfo;
}
at the top of image is old version on crystal report setting, now, my version of crystal report is crystal report 2011, how can I add the paging like old version?
thanks
Kelvin