62,271
社区成员
发帖
与我相关
我的任务
分享
string mystr = "";
protected void page_load(...)
{
}
protected void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
foreach (ListItem it in ListBox1.Items)
if (it.Selected == true)
mystr = mystr + it.Text + " ";
Label6.Text = mystr;
}