|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Yesterday @ 6:03 AM
Points: 4,787,
Visits: 1,335
|
|
Good article. It answered some of the queries about using Reporting service....
:)
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, March 04, 2011 1:09 AM
Points: 56,
Visits: 101
|
|
Hi, I am trying to show a report from a server by clicking a button. I do these things as
Microsoft.Reporting.WebForms.ReportViewer form = new Microsoft.Reporting.WebForms.ReportViewer(); Uri url = new Uri("http://server_name/reportserver"); form.ServerReport.ReportServerUrl = url; form.ServerReport.ReportPath = "/report_folder/report";
I want to open the form as when I preview the report in Report Server Project in Priview Tab
Kind Regards.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, March 08, 2011 8:38 AM
Points: 9,
Visits: 23
|
|
Hi, I think the effect you are trying to achieve is to hide/show the report on demand. What you can do is set the visible property of the report viewer control to false, and then set it to true in the OnClick event of the button that you click to show the report.
Hope this helps!
-Darren
|
|
|
|