码迷,mamicode.com
首页 > 其他好文 > 详细

遍历 DataSet

时间:2015-09-14 22:26:47      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

DataSet ds=new DataSet ;
//获取dataset的第一张table,取其他table只须改下标
DataTable dt=ds.tables[0];
//遍历行
foreach(datarow dr in dt.rows)
{
//遍历列
for(int i=0;i<dt.columns.count;i++)
{
response.write(dr[i].tostring();
}
response.write("<br />");
}

 

遍历 DataSet

标签:

原文地址:http://www.cnblogs.com/qigege/p/4808304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!