How can I add dynamic crystal report and customize it at run time in ASP.Net?
I just want to ask if there is any way in which I can add and customize
crystal report at run time?. In other words I want an ASP.net web page to
let me add new crystal report, then change the design of it and the user
can click save button. Is there any way to do this? I have this code as a
start :
ReportClass rc = new ReportClass();
CrystalReportSource crs = new CrystalReportSource();
crs.ID = "crs1";
CrystalReportViewer crv = new CrystalReportViewer();
crv.ReportSourceID = crs.ID;
Process p = new Process();
// Run viewer in the process.
Any Help is appreciated.
No comments:
Post a Comment