I want to embed a .net webpage with a ReportViewer object. I created a test project and had:
<asp:Content runat="server" ID="Content1" ContentPlaceHolderID="FeaturedContent" > <asp:Panel ID="Panel1" runat="server" Height="100%" Width="100%"> <rsweb:ReportViewer ID="ReportViewer2" runat="server" bordercolor="Navy" borderstyle="Solid" borderwidth="1px" height="100%" tooltip="Display Report" width="100%" Font-Names="Verdana" Font-Size="8pt" ProcessingMode="Remote"> <ServerReport ReportPath="/sales" ReportServerUrl="http://server/reportserver" /> </rsweb:ReportViewer> </asp:Panel> </asp:Content>
However, the report buttons are huge. See images:
![enter image description here](https://fooobar.com//img/1c854a6818426d4b7497cd1e351c17b0.png)
![enter image description here](https://fooobar.com//img/86a0adb081fa80831168136c7d093bba.png)
Any reason for this? Thanks
source share