views:

34

answers:

1

SSMS 2005 & 2008 comes with inbuilt standard reports.

How can we display these standard reports inside a asp.net web site?

+1  A: 

You can download these reports as RDL files here: http://blogs.msdn.com/sqlrem/archive/2006/08/30/SSMS_Reports_3.aspx

Deploy them to SSRS and put standard ReportViewer control on your page to display a report.

Thanks. Instead of deploying to SSRS how can we use this as Local Report?
Rajganesh Mountbatton
You can use ReportViewer control in "Local" mode, which does not require SSRS. But it has limitations (no parameter prompting, no sql queries) and may require additional programming to make things work.