views:

177

answers:

2

How would I embed a ASP.NET server control on a SQL Server 2005 Reporting file (.rdl)? I am using the design view to accomplish my task?

+3  A: 

Last time I checked you can't. Your limited to code that generates images, like bar codes.

jms
+1  A: 

Unfortunately, you can't. SQL Reporting Services can generate reports in a variety of formats -- HTML, PDF, XLS, CSV, and so on. It has nothing to do with ASP.NET other than the fact that you can use the ReportViewer web control to emit a report rendered in HTML format.

Depending on what you're trying to accomplish, you might be able to use parameters to pass information into the report from the web page containing the report viewer.

Brant Bobby