Hello,
I have an asp.net website developed with a webform that only has a ReportViewer control on it. I have also developed a VS2008 report and deployed it to the SSRS report server. I have pointed the reportviewer control to load the report from the server when
website launches, a user supplies the parameters and clicks on the View Report button that is a part of the ReportViewer control. The issue I am having is report is taking 20-40 seconds to load once the View Report button is clicked. Is there a way to show
a Loading please wait message or an image spinning etc while this report loads once the button is clicked. This the HTML for the Report Viewer default button (that I didn't create) from the page source:
<input type="submit" name="ctl00$phMainContent$ReportViewer1$ctl00$ctl00" value="View Report"
and this is my code in the page load event that points to the report on the reporting server: ...
Go to the complete details ...