您好,我正在使用Web窗体在Sap Crystal报表上查看Crystal报表设计。但是,当我访问该报表时,它的显示尺寸并没有完全显示在屏幕上。即使我在div和form标签中使用样式的宽度和高度达到100%。请推荐正确的解决方案。附加代码和报表显示
的屏幕截图这是代码。
if (!IsPostBack)
{
// conn = Connections.database();
CrystalDecisions.CrystalReports.Engine.ReportDocument report =
new CrystalDecisions.CrystalReports.Engine.ReportDocument();
report.Load(Server.MapPath("ContractReport.rpt"));
CrystalReportViewer2.ReportSource = report;
}
这是aspx文件
<form id="form1" runat="server" style="height:100%; width:100%;>
<div style="height:100%; width:100%; overflow:auto">
<table style="height:100%; width:100%">
<tr>
<td>
<CR:CrystalReportViewer ID="CrystalReportViewer2"
runat="server" AutoDataBind="true" ToolPanelView="None"
BestFitPage="True" style="height:100%; width:100%;" />
</td>
</tr>
</table>
</div>
</form>