我的主要报告显示得很好。无法获取子报表以显示数据。参数设置和链接适当,但仍然没有。我错过了一些明显的东西吗有没有我不知道的错误?还有其他人为此而战吗?我在SQL Express 2005数据库上使用Visual Web Developer Express 2008。
答案 0 :(得分:0)
您是否处理过 SubreportProcessing 事件?
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
AddHandler ReportViewer1.LocalReport.SubreportProcessing, AddressOf Me.SubreportProcessingEventHandler
End Sub
Public Sub SubreportProcessingEventHandler(ByVal sender As Object, ByVal e As Microsoft.Reporting.WebForms.SubreportProcessingEventArgs)
'TODO
End Sub
以下是MSDN页面的链接:click here