We Recommend

Accelerated C# 2008 Accelerated C# 2008
This book is both a rapid tutorial and a permanent reference. You’ll quickly master C# syntax while learning how the CLR simplifies many programming tasks. You’ll also learn best practices that ensure your code will be efficient, reusable, and robust. Why spend months or years discovering the best ways to design and code C# when this book will show you how to do things the right way, right from the start?


Posted By

krisdb on 08/02/07


Tagged

c


Versions (?)


foreach table


Published in: C# 


  1. foreach (DataRow dataRow in ds.Tables["table"].Rows)
  2. {
  3. foreach (DataColumn dataColumn in ds.Tables["table"].Columns)
  4. Response.Write(dataRow["column"] + "<Br>");
  5. }

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: krisdb on February 19, 2008

You need to login to post a comment.