I want to embed a .net webpage with ReportViewer object. I created a test project and have:
<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 buttons of the report are huge. See images:
Any reason for that? Thanks