ReportViewer (SSRS) with VB.NET Appearance Error

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 hereenter image description here

Any reason for this? Thanks

0
source share
1 answer

Finally fixed it. This was a CSS question:

 input, textarea { border: 1px solid #e2e2e2; background: #fff; color: #333; font-size: 1.2em; margin: 5px 0 6px 0; padding: 5px; width: 300px; } 

Deleted, and now everything is in order. Thanks to everyone.

0
source

Source: https://habr.com/ru/post/1501699/


All Articles