generating the crystal reports in webapplication asp.net 2.0
-
hi all, help me in generating the crystal reports in webapplication asp.net 2.0 using c#.net
-
hi all, help me in generating the crystal reports in webapplication asp.net 2.0 using c#.net
in first step you must create your report by WebSite >> Add New Item and select CrystalReport Object then Set Name Of Your report and press add. then create your report. if you passed this step in the second step must be load it by your codes. html codes:
c# codes: public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { CrystalDecisions.CrystalReports.Engine.ReportDocument rptFile = new CrystalDecisions.CrystalReports.Engine.ReportDocument(); rptFile.Load(Server.MapPath("YourReportFile.rpt")); DataTable dt = new DataTable(); // this DataTable is Source Of your report that made by sqlquery or any data in table syntax rptFile.SetDataSource(dt); CrystalReportViewer1.ReportSource = rptFile; CrystalReportViewer1.DataBind(); } } We Can Do Anything, If We Want It