服务器之家

服务器之家 > 正文

asp.net 下拉列表无级数据绑定实现代码

时间:2019-09-10 11:31     来源/作者:asp.net教程网

代码如下:


private string toadd = "├".<BR><BR>private void GetArticleCategory(string pid) 

SqlConnection conn = new SqlConnection("server=.;database=test;uid=sa;pwd=;"); 
string sql = "select Articlesgroup_id,Groupname from Articlesgroup where Articlesgroup_parent_id=@pid order by Groupname"; 
SqlCommand cmd = new SqlCommand(sql, conn); 
SqlParameter Pid = new SqlParameter("@pid", SqlDbType.Int); 
Pid.Value = pid; 
cmd.Parameters.Add(Pid); 
conn.Open(); 
SqlDataReader sdr = cmd.ExecuteReader(); 
while (sdr.Read()) 

this.DropDownList1.Items.Add(new ListItem(toadd + " " + sdr[1].ToString(), sdr[0].ToString())); 
toadd += "─┴"; 
this.GetArticleCategory(sdr[0].ToString()); 
toadd = toadd.Substring(0, toadd.Length - 2); 

sdr.Close(); 
conn.Close(); 


在Page_Load里调用 

程序代码 

复制代码代码如下:


protected void Page_Load(object sender, EventArgs e) 

this.keyword.Attributes.Add("onfocus","if( this.value=='key key key') {this.value='' };"); 
if (!Page.IsPostBack) 

this.GetArticleCategory("0"); 

this.DropDownList1.Items.Insert(0, new ListItem("Search All", "all")); 

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-07-24
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍 2019-06-05
返回顶部