如何使用 DropDownList 的 SelectedIndexChanged 事件
本文介绍了如何使用 DropDownList 的 SelectedIndexChanged 事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的网络表单中有两个 DropDownList
,当我在第一个下拉列表中选择一个值时,我希望在第二个下拉列表中自动选择一个相关值.
I have two DropDownList
s in my webform and when I select a value in the first dropdownlist, I would like a related value to be automatically selected in the second dropdownlist.
这是我目前拥有的:
背后的代码:
推荐答案
您应该将 AutoPostBack="true" 添加到 DropDownList1
You should add AutoPostBack="true" to DropDownList1
这篇关于如何使用 DropDownList 的 SelectedIndexChanged 事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!