我在Asp.net应用程序上使用Crystal Report Viewer。这些报表是在Crystal报表上设计的,在该报表中链接了两个数据库。一个是SQL Server,另一个是Hana。两种连接都可以在CR上运行,但是当我将其添加到asp.net应用程序上时,会出现Hana Connection窗口,但它没有连接,而SQL连接工作正常。输入密码后,将屏幕快照附加在此图像始终重复的位置。
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
CrystalDecisions.CrystalReports.Engine.ReportDocument report =
new CrystalDecisions.CrystalReports.Engine.ReportDocument();
report.Load(Server.MapPath("ContractReport.rpt"));
CrystalReportViewer2.ReportSource = report;
report.Refresh();
}
else
{
}
}