Hi
I just copy the code from another thread and convert it to vb.net. I want to get the "cateID" data in ItemDataBound event, however, it (sCurrentID) always receive null. Are there any mistake in my code
Private Sub detail_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles detail.ItemDataBound
Dim procDetail As Telerik.Reporting.Processing.DetailSection = CType(sender, Telerik.Reporting.Processing.DetailSection)
Dim oRow As DataRowView = TryCast(procDetail.DataItem, DataRowView)
Dim sCurrentID As String = TryCast(oRow("CateID"), String)
End Sub
Please help me, thx a lot.
Alexis