我有TextBox
,Button
和CheckBoxList
。如果我单击复选框并单击Button
,则TextBox
中会显示该值。我的TextBox
是Autocomplete
TextBox
。如果我从自动完成中选择值,则CheckBoxList
中的值将被删除。
这是我的代码:
public void ListBox()
{
lstCheckBoxList.DataSource = s.sqlconn("select CityName from City");
lstCheckBoxList.DataValueField = "CityName";
lstCheckBoxList.DataBind();
}
protected void button1_Click(object sender, EventArgs e)
{
ListBox();
foreach (ListItem li in lstCheckBoxList.Items)
{
if (li.Selected)
{
txtPracticeGroup.Text+= li.Text+ "; ";
}
}
}