if (int i = 0; i < this.CheckBoxList1.Items.Count; i++)
{
if (this.CheckBoxList1.Items[i].Selected)
{
Label1.Text = "您选择的是:" + this.CheckBoxList1.Items[i].Text.ToString();
a = a + this.CheckBoxList1.Items[i].Text.ToString() + "、";
}
Label1.Text = a;
}
are u copying characters from an external resourse? (e.g. a HTML page, a word document, etc)
There could be encoding issues which cause the problem you are encountering to.