views:

54

answers:

2

How can i trasform a microsoft sql server report service in web application or something that i can access on the net?

thanks to all that would help me

A: 

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.

marc_s