simone
simone

Reputation: 811

How to trasform a microsoft sql server report service in web application

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

Upvotes: 0

Views: 185

Answers (2)

marc_s
marc_s

Reputation: 755491

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.

Upvotes: 0

Related Questions