Реализация цикла для каждого выбранного элемента в multi-listbox

#c# #sql #vb.net #loops #listbox

#c# #sql #vb.net #циклы #список

Вопрос:

Я пытаюсь реализовать foreach цикл для каждого выбранного элемента в списке с несколькими списками UserProfileTrainingSearch :

 if (UserProfileTrainingSearch.SelectedValue != "-1" amp;amp; //other conditions)
{
    foreach (var ListBoxItem in UserProfileTrainingSearch.SelectedValue) // only the first item selected is giving the results.
    {
        Session["UserbyTrainingType"] = "SELECT DISTINCT USERPROFILE.USER_ISN, USERPROFILE.LAST_NAME   ',' ..........................;
        SqlUserProfile.SelectCommand = (string)Session["UserbyTrainingType"];
    }
}
  

Ответ №1:

 foreach (ListBoxItem item in UserProfileTrainingSearch.SelectedItems)
{
   // your code here
}