Print button does not appear in ReportViewer

I have a report viewer that shows a report deleted . But when the report is loaded, I do not see the print, update button. The same thing happens on the PC server when I try to check my reports in Report Manager. (Used by Chrome, Firefox)

Here is a screenshot of the toolbar where the buttons should be.

enter image description here

This is my sender launch code. (All true buttons are displayed to be visible)

        <rsweb:ReportViewer ID="ReportViewer1" runat="server" CssClass="reportviewer" Font-Names="Verdana" BorderColor="Black" ShowBackButton="true" ShowPrintButton="true" ShowRefreshButton="true"
        BorderStyle="None" Font-Size="8pt" InteractiveDeviceInfos="(Collection)" WaitMessageFont-Names="Verdana" AsyncRendering="false" SizeToReportContent="true" 
        WaitMessageFont-Size="14pt" Height="1050px" Width="900px" ProcessingMode="Remote">

I tried to fix this problem by installing ReportViewer Redistributable pack 2010 on both my development PC and server. I tested both local and remote reports, but in both cases they are the same.

How can i fix this?

: SQL Server 2012 64 ; IDE: VISUAL STUDIO 2010;

1. , css. (Thanx @DJ KRAZE , )

2. CSS, IE.

+5
2

- Brian Hartman Report Viewer Blog, , .

onclick .

  ReportPrintDocument rp = new ReportPrintDocument(ReportViewer1.ServerReport);
  rp.Print();  
+4

, IE, ReportViewer ActiveX , , , IE, .

+5
source

All Articles