我有一个带有下拉框、两个列表框和两个按钮的表单。
我删除了一个“选择”按钮,因为我刚刚使用了DropDownList1_SelectedIndexChanged
,但是在我使用以下建议之前,该事件不会触发:
为什么 DropDownList.SelectedIndexChanged 事件不会触发?
它涉及更改AutoPostBack='true'
和EnableViewState="true"
属性
所以现在 DropDownList 可以工作,但是对于两个列表框,SelectedIndex 保持为-1,即使被选中也不会改变。
列表框代码:
<asp:ListBox ID="ListBox1" runat="server" EnableViewState="true"
Height="207px" Width="168px"></asp:ListBox>
下拉列表代码:
<asp:DropDownList ID="DropDownList1" runat="server" EnableViewState="true"
AutoPostBack="true" style="font-weight: 700; margin-left: 26px">
按钮点击事件代码:
If (ListBox1.SelectedIndex < 0) Then 'No user selected
MsgBox("Please select a user to add from the Listbox on the left.", vbCritical, "ListBox2 Validation Error")
Else
MsgBox 现在总是说没有用户被选择,但是有一个用户选择,很奇怪。
有任何想法吗?我认为这与回发、page_load 或列表框的 selectedindex 更改事件有关,在我进行修改之前它工作得很好。