在我的asp.net页面中,我有几个复选框和一个下拉菜单。我希望根据下拉选项选择某些复选框。
我知道如何使用javascript做这个,但我想使用codebehind c#这样做。有什么帮助吗?
答案 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
如果您还需要其他任何内容,请与我们联系。
希望它有所帮助!