码迷,mamicode.com
首页 > 其他好文 > 详细

二三级下拉菜单

时间:2017-11-16 18:40:53      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:string   parent   table   pos   opd   from   items   down   tab   

if (!Page.IsPostBack)
        {
            string sql = "select * from InfoType";
            DataTable dt = SqlHelp.ExecuteDataTable(sql);
            string js = "",ss = "";
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                if (dt.Rows[i]["parenttypeid"].ToString()=="")
                {
                    js=dt.Rows[i]["typeid"].ToString();
                    DropDownList1.Items.Insert(i, new ListItem(dt.Rows[i]["tyepname"].ToString(), ""));
                }
                else
                {
                    if (dt.Rows[i]["parenttypeid"].ToString()==js)
                    {
                         ss = "+";
                    }
                    else
                    {
                        ss = "++";
                    }
                    DropDownList1.Items.Insert(i, new ListItem(ss + dt.Rows[i]["tyepname"].ToString(), ""));
                }
            }
        }

 

二三级下拉菜单

标签:string   parent   table   pos   opd   from   items   down   tab   

原文地址:http://www.cnblogs.com/enych/p/7845381.html

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