关于asp.net DropDownList 二级联动,请教高手

数据库两表:如下protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){BindDrop();}}... 数据库两表:如下
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BindDrop();
}
}
private void BindDrop()
{
//将数据捆绑到下拉列表中
string sqlStr = "select * from pingpai";
DataTable dt=DataBase.GetTable(sqlStr);
DropDownList1.DataTextField = "pingpai"; //设置列表显示的字
DropDownList1.DataValueField = "typeid"; //设置列表提交后获得的字段
DropDownList1.DataSource = dt.DefaultView;
DropDownList1.DataBind();
DropDownList1.Items.Insert(0, new ListItem("请选择车子品牌", ""));//第一项中加入内容,重点是绑定后添加
DropDownList2.Items.Insert(0, new ListItem("请选择车子品牌型号", ""));//第一项中加入内容,重点是绑定后添加
}

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
int typeid = Convert.ToInt32(DropDownList1.SelectedValue);
string sqlStr = "select * from type where id='" + typeid + "'";
DataTable dt = DataBase.GetTable(sqlStr);
DropDownList2.DataTextField = "type"; //设置列表显示的字段
DropDownList2.DataSource = dt.DefaultView;
DropDownList2.DataBind();;
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
int typeid = Convert.ToInt32(DropDownList1.SelectedValue);
string sqlStr = "select * from type where id='" + typeid + "'";
DataTable dt = DataBase.GetTable(sqlStr);
DropDownList2.DataTextField = "typeid"; //设置列表显示的字段
DropDownList2.DataSource = dt.DefaultView;
DropDownList2.DataBind();;
}
预览数据的时候,为什么 DropDownList1的数据能够全部显示,而 DropDownList2根据typeid显示数据就有问题,显示的是数据库的的一条,明明有很多条的啥,比如是我选择了奔驰,然后应该DropDownList2显示的是奔驰型号1,奔驰型号2,奔驰型号,3,为什么只有一条,郁闷了,对了我已经实现ajax的无刷新,那个应该没问题,望朋友,兄弟给予帮助的,我都搞来的一上午了!
由于财富值却是没了,所以,我也很愧疚啊!
展开
 我来答
renchao2002
2011-05-27 · TA获得超过376个赞
知道小有建树答主
回答量:638
采纳率:0%
帮助的人:518万
展开全部
this. DropDownList2..DataTextField = "pingpai";
this. DropDownList2..DataValueField = "typeId";
string sqlStr = "select * from type where typeid ='" + typeid + "'";
要根据typeid进行查找才行呢。
Id值都是唯一的,你用ID查找肯定是一条数据
要这么该
把这两个分别加上去。 试试
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Storm代理
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I... 点击进入详情页
本回答由Storm代理提供
吊创佛应停07
2011-05-27
知道答主
回答量:22
采纳率:0%
帮助的人:10.3万
展开全部
我看到两点问题,两个方法都是 protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e),你看下是否DropDownList1_SelectedIndexChanged重复,另外string sqlStr = "select * from type where id='" + typeid + "'";这里的条件字段需要确认是否写错了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xiao01j
2011-05-27 · 超过11用户采纳过TA的回答
知道答主
回答量:34
采纳率:0%
帮助的人:0
展开全部
你调试一下数据在哪个环节出了问题不就知道了
首先看你datatable中有不有数据,没有数据就看你DAL有问题不!!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式