How to trasform a microsoft sql server report service in web application
How can i trasform a microsoft sql server report service in web开发者_C百科 application or something that i can access on the net?
thanks to all that would help me
You've got a bunch of different options - see:
Integrating Reporting Services into Applications
Using the Report Server Web Service/SOAP APIs
Extending/Integrating Reporting Services using RS Programming
There's a asp:ReportViewer
control, which allows you to either display a local *.rdlc file containing a report definition, or you can also hook that up to a server-side *.rdl file on your reporting server.
Is that what you're looking for? It can render and show the report you defined on a ASP.NET page.
精彩评论