Header File
using CrystalDecisions.CrystalReports.Engine;
-------------------------------------------------------
protected void Button1_Click(object sender, EventArgs e)
{
ReportDocument cryRpt = new ReportDocument();
cryRpt.Load("E:\\crystelreport\\CrystalReport.rpt");
CrystalReportViewer1.ReportSource = cryRpt;
CrystalReportViewer1.RefreshReport();
}
using CrystalDecisions.CrystalReports.Engine;
-------------------------------------------------------
protected void Button1_Click(object sender, EventArgs e)
{
ReportDocument cryRpt = new ReportDocument();
cryRpt.Load("E:\\crystelreport\\CrystalReport.rpt");
CrystalReportViewer1.ReportSource = cryRpt;
CrystalReportViewer1.RefreshReport();
}
0 comments:
Post a Comment