本文介绍了如何将数据显示到CrystalReportViewer中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我想在我的crystalereportviewer中显示数据,我在选择空报告后创建了crystaleReport =>专家基地dedonnées和我创建新的连接,我选择了我想要显示数据的表格,我的clic概述报告pricipale我可以看到我的数据但是当我绑定我的CrystalReportViewer那里'没有数据 这是我的代码 protected void Page_Load( object sender,EventArgs e) { ReportDocument reportdocument = new ReportDocument(); reportdocument.Load(Server.MapPath( 〜/ CrystalReport1.rpt)); crpview.ReportSource = reportdocument; } < CR:CrystalReportViewer ID =crpviewrunat =serverAutoDataBind =true/> ; 解决方案 hi,i want to display data in my crystalereportviewer, i have create crystaleReport after i have chose an empty report => expert base de données and i create new connexion and i chose my table wich i want to display data , whene i clic Overview report pricipale i can see my data but whene i bind my CrystalReportViewer there' no data this's my code protected void Page_Load(object sender, EventArgs e) { ReportDocument reportdocument = new ReportDocument(); reportdocument.Load(Server.MapPath("~/CrystalReport1.rpt")); crpview.ReportSource = reportdocument; }<CR:CrystalReportViewer ID="crpview" runat="server" AutoDataBind="true" /> 解决方案 这篇关于如何将数据显示到CrystalReportViewer中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-22 17:52