views:

73

answers:

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("???") %>
+4  A: 

This should work:

<%# Container.DataItem %>
Jacob Proffitt