web-dev-qa-db-ja.com

ASP ListBoxから選択したすべての値を取得する

ASP SelectionBoxが "Multiple"に設定されているListBoxがあります。最後の要素だけでなく、選択したすべての要素を取得する方法はありますか?

<asp:ListBox ID="lstCart" runat="server" Height="135px" Width="267px" SelectionMode="Multiple"></asp:ListBox>

lstCart.SelectedIndexを使用すると、最後の要素が(期待どおりに)返されます。私をすべて選択させる何かがありますか?

これはWebフォーム用です。

19
Evan Fosmark

ListBox.GetSelectedIndices method を使用して結果をループし、itemsコレクションを介してそれぞれにアクセスできます。または、すべてのアイテムをループして、それらの 選択したプロパティ を確認することもできます。

// GetSelectedIndices
foreach (int i in ListBox1.GetSelectedIndices())
{
    // ListBox1.Items[i] ...
}

// Items collection
foreach (ListItem item in ListBox1.Items)
{
    if (item.Selected)
    {
        // item ...
    }
}

// LINQ over Items collection (must cast Items)
var query = from ListItem item in ListBox1.Items where item.Selected select item;
foreach (ListItem item in query)
{
    // item ...
}

// LINQ lambda syntax
var query = ListBox1.Items.Cast<ListItem>().Where(item => item.Selected);
54
Ahmad Mageed

リストボックスのGetSelectedIndicesメソッドを使用

  List<int> selecteds = listbox_cities.GetSelectedIndices().ToList();

        for (int i=0;i<selecteds.Count;i++)
        {
            ListItem l = listbox_cities.Items[selecteds[i]];
        }
3
Niloofar

vB.NETを使用して作成した次のコードを使用してみてください。

Public Shared Function getSelectedValuesFromListBox(ByVal objListBox As ListBox) As String
    Dim listOfIndices As List(Of Integer) = objListBox.GetSelectedIndices().ToList()
    Dim values As String = String.Empty

    For Each indice As Integer In listOfIndices
        values &= "," & objListBox.Items(indice).Value
    Next indice
    If Not String.IsNullOrEmpty(values) Then
        values = values.Substring(1)
    End If
    Return values
End Function

お役に立てば幸いです。

1
V1NNY