zoukankan      html  css  js  c++  java
  • 在datatable中添加一序号列

    http://topic.csdn.net/t/20050324/09/3876414.html
    int colLength = dt.Rows.Count;
                
    int rowLength = dt.Columns.Count;
                DataRow
    [] newRows = new DataRow[rowLength];
                DataTable subDT 
    = new DataTable();
               
                
    for (int i = 0; i < colLength; i++)
                {
                    subDT.Columns.
    Add();
                    
    for (int j = 0; j < rowLength; j++)
                    {
                        
                        
    if (newRows[j] == null) newRows[j] = subDT.NewRow();
                        newRows
    [j][i] = dt.Rows[i][j];

                    }
                }
                foreach (DataRow row 
    in newRows)
                {
                    subDT.Rows.
    Add(row);
                }
                DataRow dr 
    = subDT.NewRow();   
           dr
    [0]="aaa";   
           dr
    [1]="bbb";
           subDT.Rows.
    Add(dr);


                GridView3.DataSource 
    = subDT;
                GridView3.DataBind();
  • 相关阅读:
    虚拟机中按键切回windows系统界面快捷键
    余数
    质数(素数)判断代码实现
    =excel========》函数使用
    python 正则表达式规则
    linux常用命令详解
    c指针
    visual studio 2015 开发时常见问题的解决方案
    python装饰器
    构造方法
  • 原文地址:https://www.cnblogs.com/wdx2008/p/779605.html
Copyright © 2011-2022 走看看