posts - 5,  comments - 5,  trackbacks - 0
    DataTable dt = new DataTable();  //声明

     //添加字段
    dt.Columns.Add("title",typeof(string));
    dt.Columns.Add("url",typeof(string));

      //添加ROW
      DataRow newRow = dt.NewRow();
      newRow["title"] = (string)item["网站名"];
      newRow["url"] = (string)item["URL"];
      dt.Rows.Add(newRow);
 


    private bool IsExist(int id1, int id2)
    {      
        rows = dtYxzt.Select("id1=" + id1 + " and id2=" + id2);
        if (rows.Length > 0)
            return true ;
        else
            return false;
    }

posted on 2006-12-13 12:01 曾科 阅读(298) 评论(0)  编辑  收藏 所属分类: C#

只有注册用户登录后才能发表评论。


网站导航:
 
<2024年12月>
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234

常用链接

留言簿(3)

随笔档案

文章分类

文章档案

相册

.net

搜索

  •  

最新评论

阅读排行榜

评论排行榜