Selected items from a multiple select or checkboxes in VB.net
My co-worker found this code for VB.net that is used to access selected items from check boxes or multiple select boxes. If you've been wondering how to do this, this may help :)
The URL is http://dotnetjunkies.com/weblog/davetrux/archive/2003/11/14/3557.aspx
The URL is http://dotnetjunkies.com/weblog/davetrux/archive/2003/11/14/3557.aspx
// The results of a mulitple-select list are also a NameValueCollection Request.Form.GetValues(i) // and the individual items are accessed like this: Request.Form.GetValues(i)(j)