欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net 无限分类第1/3页

程序员文章站 2023-03-13 15:53:20
1、递归函数 //  '递归遍历自建目录树=======================================================...
1、递归函数

//  '递归遍历自建目录树=============================================================================

  private void showdir(string szml,string sindex)
  {
   system.data.sqlclient.sqlconnection sqlcon=new system.data.sqlclient.sqlconnection(connectionstring);
   string sqlstr="select * from mltable where mlzml=n'"+ szml +"'";
   system.data.sqlclient.sqldataadapter sqlada=new system.data.sqlclient.sqldataadapter(sqlstr,sqlcon);
   system.data.datatable dt=new datatable();
   sqlada.fill(dt);
   microsoft.web.ui.webcontrols.treenode node1;
   string sindex0;
   string sindex2;
   int theid;

   int sindex1=0;//记录树的最后一位值
   foreach(system.data.datarow dtdatarow in dt.rows)
   {
    theid=convert.toint32(dtdatarow["mlid"]);
    node1=new microsoft.web.ui.webcontrols.treenode();
    node1.text=dtdatarow["mlmc"].tostring();
    node1.imageurl="images/trees/folder.gif";
    node1.expandedimageurl="images/trees/folderopen.gif";
    node1.expanded=false;
    node1.navigateurl="admin_tree_show.aspx?theid=" + theid +"&sindex="+ sindex+"."+sindex1.tostring();
    node1.id="";
    node1.target="main";
    if(sindex=="")
    {
     sindex2=treeview1.nodes.indexof(node1).tostring();
     sindex0=sindex2;

    }
    else
    {

     microsoft.web.ui.webcontrols.treenode pnode=treeview1.getnodefromindex(sindex);
     pnode.nodes.add(node1);
     sindex2=pnode.nodes.indexof(node1).tostring();
     sindex0=sindex + "." + sindex2;
     sindex1++;//记录当前树下叶子的个数,即当前叶子的号
    }
    showdir(dtdatarow["mlid"].tostring(),sindex0);

   
   }
   sqlcon.close();

  }

1