Click here to Skip to main content
15,881,172 members
Articles / Web Development / ASP.NET
Alternative
Tip/Trick

Remove multiple items from ListBox

Rate me:
Please Sign up or sign in to vote.
5.00/5 (6 votes)
14 May 2010CPOL 13.2K   8   2
public static void RemoveSelected(this ListControl source){ foreach (var item in source.Items.Cast().Where(li => li.Selected).ToList()) source.Items.Remove(item);}protected void btnRemove_Click(object sender, EventArgs e){ lstCity.RemoveSelected();}
public static void RemoveSelected(this ListControl source)
{
    foreach (var item in source.Items.Cast<ListItem>().Where(li => li.Selected).ToList())
        source.Items.Remove(item);
}

protected void btnRemove_Click(object sender, EventArgs e)
{
    lstCity.RemoveSelected();
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Sweden Sweden
Software developer

Comments and Discussions

 
GeneralReason for my vote of 5 i like most your this post thanks Pin
ganpati120-Dec-11 20:49
ganpati120-Dec-11 20:49 
Generalforeach (var item in source.Items.Cast&lt;ListItem&gt;().Whe... Pin
rajekavi29-Jun-11 3:58
rajekavi29-Jun-11 3:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.