using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
protected void Page_Load(object sender, EventArgs e)
{
ReportDocument sa = new ReportDocument();
string reportPath = Server.MapPath("/Reports/Practice.rpt");
sa.Load(reportPath);
CrystalReportViewer1.ReportSource = sa;
}
using CrystalDecisions.Shared;
protected void Page_Load(object sender, EventArgs e)
{
ReportDocument sa = new ReportDocument();
string reportPath = Server.MapPath("/Reports/Practice.rpt");
sa.Load(reportPath);
CrystalReportViewer1.ReportSource = sa;
}
No comments:
Post a Comment