ASP.NET中DropDownList和ListBox实现两级联动功能
程序员文章站
2023-12-20 18:46:34
dropdownlist和listbox实现两级联动功能,它们可以将从后台数据库中搜选的出来的信息加以绑定,这里要实现的功能是在dropdownlist中选择“省”,然后让...
dropdownlist和listbox实现两级联动功能,它们可以将从后台数据库中搜选的出来的信息加以绑定,这里要实现的功能是在dropdownlist中选择“省”,然后让listbox自动将其省份下的“市”显示出来,这就是所谓的两级联动功能,这个功能我们在很多注册网页上看见,今天就为大家解开asp.net神秘的面纱。
一、设置前台界面,在web窗体中添加dropdownlist和listbox两个控件。
界面图如下所示。
二、编写后台代码
在这,后台代码编写在其窗体的page_load事件中
<span style="font-family:kaiti_gb2312;font-size:18px;"> protected void page_load(object sender, eventargs e) { if (!page.ispostback ) //判断页面是否第一次加载 { sqlconnection con = db.createconnection(); //此方法在上一篇文章中已经介绍,调用一个已经编写好的创建数据库连接的方法。 sqlcommand cmd = new sqlcommand("select * from province",con); sqldatareader sdr = cmd.executereader(); this.dropdownlist1.datatextfield = "proname"; this.dropdownlist1.datavaluefield = "proid"; //主键字段 this.dropdownlist1.datasource = sdr; this.dropdownlist1.databind(); sdr.close(); } }</span>
编写dropdownlist1_selectedindexchanged事件代码,实现单击“省”,listbox自动添加该“省”所具有的“市”
<span style="font-family:kaiti_gb2312;font-size:18px;"> protected void dropdownlist1_selectedindexchanged(object sender, eventargs e) { this.listbox1.items.clear(); sqlconnection con2 = db.createconnection(); sqlcommand cmd1 = new sqlcommand("select * from city where proid=" + this.dropdownlist1.selectedvalue, con2); sqldatareader sdr1 = cmd1.executereader(); while (sdr1.read()) { this.listbox1.items.add(new listitem(sdr1.getstring(2),sdr1.getint32(0).tostring())); } }</span>
运行文件,效果图如下所示
这里河北省的城市我没有添加完整,只是为了实现两级联动的功能,相比前两篇文章中web控件gridview和repeater的使用,gridview和repeater功能虽然是相当强大,但是不同的控件有不同的用途,在这里,杀鸡焉用牛刀?