我在后面的代码中找不到在 ASP.NET ListBox 中选择多个项目的方法?这是需要在 Javascript 中完成的事情吗?
I can't find a way to select multiple items in an ASP.NET ListBox in the code behind? Is this something needs to be done in Javascript?
这是执行此操作的 VB 代码...
this is the VB code to do so...
myListBox.SelectionMode = Multiple
For each i as listBoxItem in myListBox.Items
if i.Value = WantedValue Then
i.Selected = true
end if
Next
这篇关于如何在 ASP.NET ListBox 中设置多项选择?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!