|
|
|
Click here to copy the following block | ' Select the specified items (passed as a comma delimited list) in the input ' List control (e.g. ListBox, CheckBoxList) ' ' Example: ' SetListSelections(CheckBoxList1, "item 3, item 5, item 6")
Sub SetListSelections(ByVal listCtl As System.Web.UI.WebControls.ListControl, _ ByVal selections As String) ' first reset the list's selections For Each item As System.Web.UI.WebControls.ListItem In listCtl.Items item.Selected = False Next ' replace the ", " separator with a single char separator, ' so that the string's Split method can be used selections = selections.Replace(", ", "*") ' split the string in an array of items to select Dim itemsToSelect As String() = selections.Split("*"c) ' search each item, and if found, select it For Each itemToSelect As String In itemsToSelect Dim item As System.Web.UI.WebControls.ListItem = _ listCtl.Items.FindByValue(itemToSelect) If Not item Is Nothing Then item.Selected = True Next End Sub |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|