ReportViewer control won’t allow Exporting

asp.netreporting-servicesreportviewer

1) I have a ReportViewer control on a page that's linked to a ServerReport (I'm using ASP.NET 2.0). The report displays fine, but the 'Export' link is present but disabled and the 'Select a format' drop down list (that's normally visible when you view the report in Reporting Services) isn't there. Any ideas? The ShowExportControls property is set to true.

2) Also, when I click the print icon in the ReportViewer control, IE asks me if I want to install 'Microsoft SQL Server'. I click Install and then it displays a messagebox saying 'Unable to load client print control'. I'm using IE7 and Vista.

Best Answer

The first part I don't know, but the second can be the ActiveX used to print. When you press that print button, it is calling an ActiveX control on the client's machine to be able to print.

If this control is not yet installed on the client machine, it is downloaded and installed if you have enought rights. So it is the rights management.

Try to login as an admin user and try to print. If it goes well, you can logout and login as a standard user and print again. It worked for us on XP+IE6 and XP+IE7. Finally we used SCCM to install the control to all machines.

Related Topic