zoukankan      html  css  js  c++  java
  • 动态创建DataTable

    //动态创建DataTable用来绑定到GridView。

    DataTable dt_per = new DataTable();
            DataColumn column_per;
            column_per = new DataColumn();
            column_per.DataType = System.Type.GetType("System.String");
            column_per.ColumnName = "ord_nbr";
            column_per.ReadOnly = true;
            column_per.Unique = true;
            dt_per.Columns.Add(column_per);

            column_per = new DataColumn();
            column_per.DataType = System.Type.GetType("System.String");
            column_per.ColumnName = "ord_seq";
            dt_per.Columns.Add(column_per);

    DataRow dtr_per;
                    dtr_per = dt_per.NewRow();
                    dtr_per["ord_nbr"] = dt_trdord.Rows[i][0].ToString();//dt_trdord另一个DataTable
                    dtr_per["ord_seq"] = 方法(参数1, 参数2,……);
                    dt_per.Rows.Add(dtr_per);

    =======================================================

    DataTable dt = new DataTable();
            dt.Columns.Add(DateTime.Today.AddMonths(-2).Month + "上上月");
            dt.Columns.Add(DateTime.Today.AddMonths(-1).Month + "上月");
            dt.Columns.Add(DateTime.Today.Month + "本月");
            DataRow dr;
            dr = dt.NewRow();
            decimal d1 = 0, d2 = 0, d3 = 0;

    //这块可以对d1、d2、d3赋值

       dr[0] = d1;
            dr[1] = d2;
            dr[2] = d3;
            dt.Rows.Add();
            GridView_ID.DataSource = dt;
            GridView_ID.DataBind();

                   

    Any fool can write code that a computer can understand. Good programmers write code that humans can understand. –Martin Fowler
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
  • 相关阅读:
    nginx proxy_cache_revalidate
    博客园快速转载的方法,复制html的内容直接粘贴
    理解http浏览器缓存
    github 搜索技巧
    nginx缓存配置及开启gzip压缩
    音乐播放器的显示与隐藏
    寒假近半个月的收获
    javascript编程习惯总结
    关于域名服务器获取流程问题
    云盘WEB资料下载链接
  • 原文地址:https://www.cnblogs.com/gerryge/p/2287590.html
Copyright © 2011-2022 走看看