Click here to Skip to main content
15,885,705 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I bind a GridView to a DataTable so that I can view all the DataTable rows in it?
Posted
Updated 14-Mar-10 0:18am
v2

1 solution

You can do it like this:
gvTest.DataSource = dtTest;
gvTest.DataBind();


For iterating through the DataTable rows:
foreach(DataRow dr in dtTest.Rows)
{
  // Check at row level whatever you want to using dr
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900