Click here to Skip to main content
15,909,466 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
I am facing this problem from last 2-3 days
Earlier my RDLC reports were loading very fastly but nowdays sometimes reports are loading and sometimes the page refreshing icon is rotating but RDLC report is not loading and neither any error message is displaying .
Posted
Comments
thatraja 7-Feb-14 8:24am    
Unfortunately we need more details to spot the issue(though you have posted some details). Error? log? event viewer? trace? etc.,
govindi unal 7-Feb-14 22:00pm    
no error message is displaying

1 solution

before adding datasources to report clear your datasource

C#
ReportViewer1.LocalReport.DataSources.Clear();
                ReportViewer1.LocalReport.DataSources.Add(rds);
                ReportViewer1.LocalReport.DataSources.Add(rds2);
 
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