zoukankan      html  css  js  c++  java
  • asp.net treeview 动态读取数据库

            TreeNode _node = new TreeNode();
            TreeNode noderoot = new TreeNode();
            if (TreeView1.Nodes.Count == 0)                  //添加根节点
            {
                noderoot.Text = "所有系统结构";              
                noderoot.Value = "0";
                TreeView1.Nodes.Add(noderoot);
                noderoot.ExpandAll();                          //展开所有节点
            }
            sql = "select [字段1],[字段2] from [table]";   //从数据库中读出子节点
            DataTable dt = db.GetDataTable(sql);
            DataView dv = new DataView(dt);
            foreach (DataRowView drv in dv)
            {
                _node = new TreeNode();
                _node.Text = drv[字段2]ToString();
                _node.Value = drv[字段1].ToString();
                noderoot.ChildNodes.Add(_node);

          }

  • 相关阅读:
    NKOJ P3051浇花
    Linux-Shell脚本编程-学习-2-Linux基本命令
    Linux-Shell脚本编程-学习-1-Linux基本命令
    Ubuntu下使用Git_6
    Ubuntu下使用Git_5
    电脑优化,提速
    Ubuntu下使用Git_4
    Ubuntu下使用Git_3
    Ubuntu下使用Git_2
    Ubuntu下使用Git_1
  • 原文地址:https://www.cnblogs.com/sherry/p/1350534.html
Copyright © 2011-2022 走看看