用c#做一个城市选择,DropDownList1为省,DropDownList2为市。

比如DropDownList1选了浙江,DropDownList2有浙江省的市的选择。可是DropDownList2空白。求帮助!!!usingSystem;usingS... 比如DropDownList1选了浙江,DropDownList2有浙江省的市的选择。可是DropDownList2空白。
求帮助!!!

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
using System.Data;

public partial class Default5 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{

}
protected void DropDownList2_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownList2.Items.Clear();
String abc = DropDownList1.Text;
String serstr = @"server=dell-pc;uid=sa;pwd=111111;database=yzq ";
SqlConnection mycon = new SqlConnection(serstr);
mycon.Open();
String select = @"select 市名from shi where 省id=' " + abc + " '";
SqlCommand mycommand = new SqlCommand(select, mycon);
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = mycommand;
DataSet ds = new DataSet();
da.Fill(ds);
DataTable mytable = ds.Tables[0];
//设定list2的数据源
DropDownList2.DataSource = mytable;
DropDownList2.DataTextField = "市名";
DropDownList2.DataValueField = "市名";
DropDownList2.DataBind();
mycon.Close();
}
}
展开
 我来答
爱心善行共赢
2014-12-24 · TA获得超过313个赞
知道小有建树答主
回答量:355
采纳率:0%
帮助的人:271万
展开全部
你代码没发错吗 ?那些 DropDownList2_SelectedIndexChanged的代码是不是应该放在 DropDownList1_SelectedIndexChanged下面的阿
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式