Hi Frndz,
Functionality ::Get selected item in LIstbox ( multiple)
Foreach loop through listbox. And get selected item as folloiwg way
CODE ::
foreach (ListItem item in lstFirst.Items)
{
string selectedvalue = "";
if (item.Selected)
{
selectedvalue = item.Value;
}
}
Hope this helpful!
Thanks