Click here to Skip to main content
15,920,896 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hai all,

How can I show All pages of Report in CrystalReportViewer..

Please help me..

Urgently needed..

Thanks in advance..
Posted
Updated 7-Oct-11 2:11am
v2

refer this link
http://www.c-sharpcorner.com/UploadFile/mahesh/CrystalReportsViewer11082005044859AM/CrystalReportsViewer.aspx
 
Share this answer
 
ReportDocument crystalReport = new ReportDocument();
crystalReport.Load(Server.MapPath("CRDespatchChallanTestCer.rpt"));
crystalReport.SetDatabaseLogon("UserName","Password","ServerName","DataBase");
crystalReport.SetDataSource(dt);
CRVDespatchChallanTestCer.ReportSource = crystalReport;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900