点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)大家好 我遇到一个奇怪的问题,...
点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)大家好 我遇到一个奇怪的问题,...
加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)
大家好
我遇到一个奇怪的问题,数据库登录提示仅出现在第二页(导航下一页)上。 我正在使用Visual Studio 2019社区版和Crystal Reports 13,更新27支持VS2019。 在针对表进行报告时,我没有这个特殊的问题,但是存储过程接受多个参数,并且过程中的选择引用了多个视图。 为了更容易理解:
该报告的调用方式如下
受保护的空白Page_Load(对象发送者,EventArgs e) { 如果(!IsPostBack) { ReportDocument reportDocument = new ReportDocument(); reportDocument.Load(Server.MapPath(@"〜/CrystalReport2.rpt")); reportDocument.SetParameterValue(0,2020); reportDocument.SetParameterValue(1,1); reportDocument.SetParameterValue(2,3); reportDocument.SetParameterValue(3," 1"); reportDocument.SetParameterValue(4," 1"); ConnectionInfo connectionInfo =新的ConnectionInfo { DatabaseName ="测试", UserID =" sa", 密码="密码", ServerName =" RAJESH-PC" }; SetDBLogonForReport(connectionInfo,reportDocument); CrystalReportViewer1.Visible = true; CrystalReportViewer1.ReportSource = reportDocument; } }
和SetDBLogonForReport方法如下:
私有无效SetDBLogonForReport(ConnectionInfo connectionInfo,ReportDocument rpt) { foreach(rpt.Subreports中的ReportDocument subRpt) { foreach(subRpt.Database.Tables中的表crTable) { Response.Write(crTable.Name); crTable.LogOnInfo.ConnectionInfo.AllowCustomConnection = true; TableLogOnInfo logInfo = crTable.LogOnInfo; logInfo.ConnectionInfo = connectionInfo; 尝试 { crTable.ApplyLogOnInfo(logInfo); } 抓住(前例外) { Response.Write(ex.Message); } } } foreach(rpt.Database.Tables中的表crTable) { Response.Write(crTable.Name); crTable.LogOnInfo.ConnectionInfo.AllowCustomConnection = true; TableLogOnInfo loi = crTable.LogOnInfo; loi.ConnectionInfo = connectionInfo; 尝试 { crTable.ApplyLogOnInfo(loi); } 抓住(前例外) { Response.Write(ex.Message); } } }
虽然在没有数据库登录提示的情况下执行单页报告,但经过2天的不懈努力寻找解决方案后,我有点完全迷失了。
致谢
rajesh
整个解决方案在此处发布。 这可能会帮助其他少数情况相同的人。
https://stackoverflow。 com/questions/61998462/crystal-report-on-asp-c-sharp-application-postback-issues
致谢
Rajesh
一周热门 更多>