asp.net DropDownList 事件未触发

发布于 2024-09-12 02:50:40 字数 362 浏览 2 评论 0原文

我的下拉列表有问题,当所选索引发生更改时,下拉列表似乎没有“注意到”。在表单上,​​它看起来像这样:

<asp:DropDownList ID="DDLResponsible" runat="server"></asp:DropDownList>

在表单上有另一个下拉列表,当该下拉列表中选定的索引发生更改时,将使用 javascript 重新加载该下拉列表。这很好用。但是,当我从此列表中选择一个项目并按表单上的“保存”按钮时,所选值似乎没有改变。

我尝试使用 AutoPostback = true 但这只是使两个列表重新加载为其原始值。

如果有人明白发生了什么事,请向我解释一下。

I have a problem with a dropdownlist that doesn't seem to "notice" when the selected index has changed. On the form it looks something like this:

<asp:DropDownList ID="DDLResponsible" runat="server"></asp:DropDownList>

On the form there is another dropdownlist and when the selected index changes in that one, this one is reloaded using javascript. This works fine. But when i select an item from this list and press the save button on the form, the selected value just doesn't seem to change.

I tried using AutoPostback = true but that just made both lists reload to their original values.

If anyone understands what's going on, please please please explain in to me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

好多鱼好多余 2024-09-19 02:50:40

你在Page.OnLoad上使用Page.IsPostBack吗?
如果你错过了它会导致这种行为..

你可以发布更多代码吗?

Do you use Page.IsPostBack on Page.OnLoad?
If you miss that it would cause this behavior..

Can you post more code?

寂寞美少年 2024-09-19 02:50:40

似乎如果 Pageload 事件中缺少 IsPostBack 检查...请检查它,如果没有,请详细解释您的问题。

It seems that if IsPostBack check is missing in Pageload event.... please check it or if not then please explain you question more.

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