I have a reporting module in our new application. As per requirement I want to show SSRS rdl (.rdl) report in my web application. Our client told that, they will provide report files (“.rdl”). We want to put these report files in to a folder in our application
and needs to shows the report using a report viewer. Will it be possible?
I had used the following code to show an ssrs report in another web application
MyReportViewer.ServerReport.ReportServerUrl = new Uri(@"http://localhost/ReportServer");
Ashutosh Pathak
Blog: http://catchcode.blogspot.com Please mark it as answer if it helps, as clicking on the button can save time of others :)
MCP,MCAD,MCSD,MCTS
Ashutosh Pathak
Blog: http://catchcode.blogspot.com Please mark it as answer if it helps, as clicking on the button can save time of others :)
MCP,MCAD,MCSD,MCTS
ranishcnr
None
0 Points
7 Posts
How to load ".rdl" report in a webpage?
Apr 10, 2012 09:28 AM|LINK
Hi Team,
I have a reporting module in our new application. As per requirement I want to show SSRS rdl (.rdl) report in my web application. Our client told that, they will provide report files (“.rdl”). We want to put these report files in to a folder in our application and needs to shows the report using a report viewer. Will it be possible?
I had used the following code to show an ssrs report in another web application
MyReportViewer.ServerReport.ReportServerUrl = new Uri(@"http://localhost/ReportServer");
MyReportViewer.ServerReport.ReportPath = "/SSRSSample/MyReport";
I had given “ReportServerUrl” and “ReportPath” properties and it was working
Is it possible to show a report (“.rdl”)file which is placed inside the application?.
If yes, how can I Implement this?
Thanks,
Ranish
Ashutosh Pat...
Contributor
5737 Points
1105 Posts
Re: How to load ".rdl" report in a webpage?
Apr 10, 2012 09:39 AM|LINK
set line to like below:
MyReportViewer.ServerReport.ReportPath = "/SSRSSample/MyReportName.RDL";
Blog: http://catchcode.blogspot.com
Please mark it as answer if it helps, as clicking on the button can save time of others :)
MCP,MCAD,MCSD,MCTS
ranishcnr
None
0 Points
7 Posts
Re: How to load ".rdl" report in a webpage?
Apr 10, 2012 11:20 AM|LINK
This is not working..
Ashutosh Pat...
Contributor
5737 Points
1105 Posts
Re: How to load ".rdl" report in a webpage?
Apr 10, 2012 11:32 AM|LINK
try to visit the link below, follow the steps, Im sure you'll get the way out:
http://msdn.microsoft.com/en-us/library/aa337091.aspx
http://www.codeproject.com/Articles/15469/Integrating-Reporting-Services-2005-Into-a-Web-App
Blog: http://catchcode.blogspot.com
Please mark it as answer if it helps, as clicking on the button can save time of others :)
MCP,MCAD,MCSD,MCTS