1

我的主要报告显示得很好。无法让子报表显示数据。参数已正确设置和链接,但仍然没有。我错过了一些明显的东西吗?有我不知道的错误吗?还有人在和这个争吵吗?我在 SQL Express 2005 数据库上使用 Visual Web Developer Express 2008。

4

1 回答 1

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 页面的链接:单击此处

于 2009-11-12T08:55:10.313 回答