如何在不使用JavaScript的情况下从下拉菜单中触发复选框选择?

时间:2017-03-24 02:14:11

标签: c# asp.net checkbox drop-down-menu

在我的asp.net页面中,我有几个复选框和一个下拉菜单。我希望根据下拉选项选择某些复选框。

我知道如何使用javascript做这个,但我想使用codebehind c#这样做。有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

您可以通过将AutoPostBack下拉列表设置为true并在Page_Load中进行检查来实现此目的,

If(IsPostBack)
//Get the selected Item of your dropDown i.e. dropDown1.SelectedItem.Text
// and populate the comboBoxes based on your dropDown's selected value

如果您还需要其他任何内容,请与我们联系。

希望它有所帮助!