1

I've got the following list of integers:

Dim foo = New List(Of Integer)

I set the datasource of my gridview to foo. What do I put in my databinding markup?

<%# Eval("???") %>
Larsenal
  • 49,878
  • 43
  • 152
  • 220

1 Answers1

6

This should work:

<%# Container.DataItem %>
Jacob Proffitt
  • 12,664
  • 3
  • 41
  • 47