下拉列表自动回发错误

发布于 2025-01-02 13:20:11 字数 876 浏览 0 评论 0原文

我的数据库中有一些项目,在页面加载时,我的下拉列表将加载数据库中的所有项目,我想要实现的是每当用户从下拉列表中选择任何项目时,都会有一些输出显示

在我的数据库中的项目

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

星軌x 2025-01-09 13:20:11

需要触发页面更新,以反映页面上的任何更改。
可以通过单击按钮或通过下拉菜单本身来实现。

尝试将下拉列表的“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.

神也荒唐 2025-01-09 13:20:11

使用 jQuery 可以轻松完成此操作。 演示

This could be easily done using jQuery. Demo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文