下拉列表自动回发错误
我的数据库中有一些项目,在页面加载时,我的下拉列表将加载数据库中的所有项目,我想要实现的是每当用户从下拉列表中选择任何项目时,都会有一些输出显示
在我的数据库中的项目
a
b
c
一旦我设置dropdownlist自动回发=true(它可以实现我的要求之一,一旦选择了项目,一些输出显示,但数据加载有问题)
dropdownlist中的输出< /strong>
a
b
c
a
b
c
a
b
c
它将重复 3 次
一旦我设置 autopostback = false (数据加载没问题,但无法显示我的输出),
,下面是我的下拉列表的代码
while (dtrLoad.Read())
{
ddlCourse.Items.Add(dtrLoad["subject"].ToString());
if(ddlCourse.SelectedItem.Text=="Please Select"){
p1.InnerHtml = "Welcome";
}else if(ddlCourse.SelectedItem.Text==dtrLoad["subject"].ToString()){
p1.InnerHtml=dtrLoad["subjectIntroduction"].ToString();
}else{
}
}
there are some item in my database,on page load, my dropdownlist will load all the item from db, what i want to achieve is whenever user selected any item from dropdownlist, there are some output will be display
item inside my db
a
b
c
once i set dropdownlist auto post back =true (it can achieve one of my requirement, once there are item selected, some output display, but there are problems for data load)
output in dropdownlist
a
b
c
a
b
c
a
b
c
it will repeated for 3 time
once i set autopostback =false (data load no problem,but cant display my output)
below is the code for my dropdownlist
while (dtrLoad.Read())
{
ddlCourse.Items.Add(dtrLoad["subject"].ToString());
if(ddlCourse.SelectedItem.Text=="Please Select"){
p1.InnerHtml = "Welcome";
}else if(ddlCourse.SelectedItem.Text==dtrLoad["subject"].ToString()){
p1.InnerHtml=dtrLoad["subjectIntroduction"].ToString();
}else{
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
需要触发页面更新,以反映页面上的任何更改。
可以通过单击按钮或通过下拉菜单本身来实现。
尝试将下拉列表的“AutoPostBack”属性设置为 true。
It's required to trigger page update, to reflect any changes on the page.
It is possible with button click or with dropdown itself.
Try to set "AutoPostBack" property of the dropdown to true.
使用 jQuery 可以轻松完成此操作。 演示
This could be easily done using jQuery. Demo