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

清空dataset中的某行某列的数据

时间:2014-05-23 11:47:29      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:c   tar   a   数据   string   set   

string tempSFZH = "";
foreach (DataRow rs in ds.Tables[0].Rows)
{
     tempSFZH = rs[ht["身份证号码"].ToString()].ToString();
     foreach (DataRow rs1 in ds_stuAll.Tables[0].Rows)
    {
         foreach (DataColumn dc in ds_stuAll.Tables[0].Columns)
          {
                if (dc.ColumnName == "sfzh" && rs1[dc].ToString() == tempSFZH)
                 {
                      rs1["xjh"] = "";
                     rs1["user_xh"] = "";
                 }
           }
     }
}

清空dataset中的某行某列的数据,布布扣,bubuko.com

清空dataset中的某行某列的数据

标签:c   tar   a   数据   string   set   

原文地址:http://www.cnblogs.com/miraclesakura/p/3737328.html

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