Hi, I'm writing a .aspx in asp.net vb codes, i have
a datatable, however i can't seem to display
the individual field data of each records as i'm not
sure if i'm coding it correctly, please correct me!
help appreciated!

<BODY>

<% Dim i As Integer %>
<% For i = 0 to DataTable.Rows.Count - 1 %>
<% DataRow = DataTable.Rows(i) %>
<% DataRow.Item("ID") %> , <% DataRow.Item("Name") %> , <% DataRow.Item("Age") %>
<% Next %>

</BODY>