本文介绍了在下拉列表中显示层次结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用表类别,并且我有三列CatID,CatName,ParentcatId,
在ParentCatId中,我必须在Hierarchy中显示catId列值.
I am using the table category and in that I have Three Column CatID,CatName,ParentcatId,
In ParentCatId I have to show the catId column value in Hierarchy
推荐答案
DropDownList ddl = new DropDownList();
while (rs.Read())
{
string id = rs.GetGuid(0).ToString();
int depth = rs.GetInt32(3);
string text = rs.GetString(2);
string padding = String.Concat(Enumerable.Repeat(" ", 4 * depth));
ddl.Items.Add(new ListItem(padding + text, id));
}
这篇关于在下拉列表中显示层次结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!