Thursday, October 9, 2008

Go thoroug list box and get the values whic checked

foreach (ListItem item in lbVendors.Items)
{
if (item.Selected)
{
sbVender.AppendFormat("", item.Value.ToString());
}
}

No comments: