StringBuilder sb = new StringBuilder();
foreach (ListItem item in CheckBoxList1.Items)
{
if (item.Selected)
{
sb.Append(item.Text + ", ");
}
}
lblfocdata.Text=sb.ToString();
Page 1: index.html <!DOCTYPE html> <html> <head> <title> Page 1 </title> </head> <body> ...
No comments:
Post a Comment