accessing row data from the repeater

  • Thread starter Thread starter Tommy
  • Start date Start date
T

Tommy

Is it possible to access the rowdata that the repeater is binding? Possibly
in the
ItemDataBound event?

Thanks

Tommy
 
Email received from sender:
---------------------------------------------------------------
From: Tommy
Date Posted: 11/6/2004 10:23:00 PM



Please disregard.. I figured out my problem.

Dim oRV As DataRowView = e.Item.DataItem

Dim iVal As Integer = oRV.Item("fieldname")
 
Back
Top