F. M.
F. M.

Reputation: 509

rdl report to aspx page viewer

I have visual Studio 2008 web project with sql 2008 (3.5). I have created a .rdl report and want to view/post it on an aspx page. I am also using C# if that helps. What are the steps/tools needed. thanks

Upvotes: 1

Views: 3209

Answers (1)

Tom Studee
Tom Studee

Reputation: 10452

You will need to convert your rdl to an rdlc (Outlined here: http://msdn.microsoft.com/en-us/library/ms252109%28VS.80%29.aspx)

Then you can drag an aspx report viewer control to your aspx page and select the rdlc file.

EDIT: Since you already have an SSRS server, you do not need to bother converting your rdl to rdlc. I believe this is what you were looking for: SSRS Report on ASP.NET page

Upvotes: 1

Related Questions