I am trying to get values from a select multiple box like this but the breakpoint at For Each Item in box is nothing, what am I doing wrong? Please advice, thanks:
Dim box = Request.Form("outletToBox")
For Each item In box
Dim abc As String = item.ToString
Dim cdf As String = abc
Next
我的选箱:
<select multiple size="8" style="width: 135px" runat="server" onblur="selectAll(this, true, document.getElementById( <%#uilblDestinationQualOutlet.ClientID%> ))"
id="outletToBox" onclick="return outletToBox_onclick()">
</select>