码迷,mamicode.com
首页 > Windows程序 > 详细

c# DropDownList 下拉框实现树形导航

时间:2014-12-26 18:48:50      阅读:518      评论:0      收藏:0      [点我收藏+]

标签:树形导航

  ddlbig.Items.Add(new ListItem("新闻分类", "0"));

  newclass(pub.getpower(), "146", "");





public  void newclass(DataTable dtMenu, string parentNo,string str)

 {

     string expression = "parentid= " + parentNo;

     DataRow[] foundRows;

     DataTable newdt = new DataTable();

     foundRows = dtMenu.Select(expression);

     str = str + " ";//实现树形

     for (int i = 0; i < foundRows.Length; i++)

     {

         newdt.ImportRow((DataRow)foundRows[i]);

        ddlbig.Items.Add(new ListItem(str + "|--" + foundRows[i]["menuname"].ToString(), foundRows[i]["No"].ToString()));

         newclass(dtMenu, foundRows[i]["No"].ToString(), str);

     }

    

 }


c# DropDownList 下拉框实现树形导航

标签:树形导航

原文地址:http://zhaoyingyatou.blog.51cto.com/7151735/1596329

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