我有checkboxlist从数据库中获取值。并且有一个标签可以在复选框中获取选定的值。我希望每个选定的值都可以使用 像这样的li标签
但目前它正好像这样Please clink linK(我没有足够的声誉,因此无法在此处上传图片。请转到该链接)
VB代码
For Each chk As ListItem In servicesList.Items
If chk.Selected = True Then
selectedServices.Text = String.Concat("<li>" + selectedServices.Text + chk.Value + "</li>")
End If
Next
如何让它在我需要的时候正常工作。
答案 0 :(得分:0)
如下所示,
Dim selectedServices as String = String.empty
For Each chk As ListItem In servicesList.Items
If chk.Selected = True Then
selectedServices &= "<li>" + chk.Text + "</li>"
End If
Next