Protected Sub repReport_ItemDataBound(ByVal sender As Object, ByVal e As RepeaterItemEventArgs) Handles repReport.ItemDataBound
try
Dim di As DataRowView = e.Item.DataItem
Dim rp As Repeater = e.Item.FindControl("repReviewers")
rp.DataSource = GetReviewers(di("ReportID")
rp.DataBind()
...
Catch ex As Exception
' oops???
End Try
End Sub
|