我无法在后面的代码中找到在ASP.NET ListBox中选择多个项目的方法?这需要用Java脚本完成吗?

最佳答案

这是这样做的VB代码...

myListBox.SelectionMode = Multiple
For each i as listBoxItem in myListBox.Items
  if i.Value = WantedValue Then
      i.Selected = true
  end if
Next

09-25 21:42