Jun 14, 2011

get selected value of check list box. asp.net



Dim tempStr As String = ""
For Each Item As ListItem In ChkUnitList.Items
If Item.Selected = True Then
tempStr = tempStr & Item.Text.Trim() & ","
End If
Next

No comments:

Post a Comment

What is the use of n-tier architecture and 3-tier architecture?

how to implement 3-tier architecture in asp.net using c#. 3-Tier architecture is also called layered architecture. Some people called it ...