按钮代码:
Protected Sub btnAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Dim li1 As ListItem
Dim addList As New List(Of ListItem)
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
For Each li1 In ListBox1.Items
If li1.Selected = True Then
adduser(li1.Selected.ToString, intKL)
End If
Next
End If
End Sub
使用以下方式清除和添加项目:
ListBox2.Items.Clear()
和
While SQLdr.Read()
If SQLdr.Item(0).ToString <> "" And SQLdr.Item(1).ToString <> "" Then
ListBox2.Items.Add(SQLdr.Item(1).ToString & " - " & SQLdr.Item(0).ToString)
End If
End While
下拉框的负载正在发生更新
这与自动回发和我认为的页面加载有关,有人可以帮忙吗
即使我在列表框中选择了一个项目,当我单击添加按钮时,它也会始终返回错误消息。我不认为 listbox changedselected 项目正在触发。