User-843484705 posted
I am using this line of code in my many application. my list is multi selection.
for (int i = 0; i < lstManaging.Items.Count; i++)
{
//Check if the current Item is selected in the Listbox
if (lstManaging.Items[i].Selected)
{
Response.Write("True");
}
}
Hope this will help you
Happy Coding