1
我有主報表顯示很好。無法獲取子報表以顯示數據。參數設置和鏈接適當,但仍然沒有。我錯過了明顯的東西嗎?有沒有我不知道的錯誤?任何人都在爲此而戰?我在SQL Express 2005數據庫上使用Visual Web Developer Express 2008。使用ASP.NET VB顯示子報表數據到Microsoft報表查看器控件
我有主報表顯示很好。無法獲取子報表以顯示數據。參數設置和鏈接適當,但仍然沒有。我錯過了明顯的東西嗎?有沒有我不知道的錯誤?任何人都在爲此而戰?我在SQL Express 2005數據庫上使用Visual Web Developer Express 2008。使用ASP.NET VB顯示子報表數據到Microsoft報表查看器控件
您是否處理了子報表處理事件?
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