문제

I have a SSRS solution with a report and I'd like to integrate that report with an C# app that is in another solution. Could anybody you tell me how can I do that?, I'm using visual studio 2010.

도움이 되었습니까?

해결책

The ReportViewer component allows you to add a report to a winform application, or you can always launch a web browser out of your application to the report server, passing parameters as needed.

다른 팁

I did it, I copy the xml (.rdl file) from my SQL Server Data Tools pasted it in my .rdlc faile created in my C# app, after that I updated this line

<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">

from 2010 to 2008 and after that change my dataset name.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top