公告
财富商城
积分规则
提问
发文
2019-09-15 07:27发布
Explosion°爆炸
I got the problem in Crystal Report- Error Messsage:Load report failed.
how to solve this issue??.
You can call show data on report in DataBinding and Navigate methods.
protected void CrystalReportViewer1_DataBinding(object sender, EventArgs e) { this.ShowReportData(); } protected void CrystalReportViewer1_Navigate(object source, CrystalDecisions.Web.NavigateEventArgs e) { this.ShowReportData(); }
If your report is running for awhile and then falls over make sure you Dispose it.......
if(myReport != null) { myReport .Close(); myReport .Dispose(); }
最多设置5个标签!
You can call show data on report in DataBinding and Navigate methods.
If your report is running for awhile and then falls over make sure you Dispose it.......