web-dev-qa-db-ja.com

CheckBoxListで選択した値を取得するにはどうすればよいですか?

クラスファイルでCheckBoxListを作成し、HTMLTextWriterを使用してコントロールをレンダリングしています。

次のコードを使用して、選択した値を文字列に保存しています。

string YrStr = "";
for (int i = 0; i < YrChkBox.Items.Count; i++)
{
    if (YrChkBox.Items[i].Selected)
    {
        YrStr += YrChkBox.Items[i].Value + ";"; 
    }
}

私はコードをステップ実行しましたが、ifステートメントの内側にヒットしていないようです&選択された値属性は毎回偽です...誰も私がこれに対処する方法のアイデアを持っていますか?

次を使用してデータを入力します。

 YrChkBox.Items.Add(new ListItem("Item 1", "Item1"));
12
anpatel

ASPXページには、次のようなリストがあります。

_    <asp:CheckBoxList ID="YrChkBox" runat="server" 
        onselectedindexchanged="YrChkBox_SelectedIndexChanged"></asp:CheckBoxList>
    <asp:Button ID="button" runat="server" Text="Submit" />
_

Aspx.csページの背後にあるコードには、次のものがあります。

_    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            // Populate the CheckBoxList items only when it's not a postback.
            YrChkBox.Items.Add(new ListItem("Item 1", "Item1"));
            YrChkBox.Items.Add(new ListItem("Item 2", "Item2"));
        }
    }

    protected void YrChkBox_SelectedIndexChanged(object sender, EventArgs e)
    {
        // Create the list to store.
        List<String> YrStrList = new List<string>();
        // Loop through each item.
        foreach (ListItem item in YrChkBox.Items)
        {
            if (item.Selected)
            {
                // If the item is selected, add the value to the list.
                YrStrList.Add(item.Value);
            }
            else
            {
                // Item is not selected, do something else.
            }
        }
        // Join the string together using the ; delimiter.
        String YrStr = String.Join(";", YrStrList.ToArray());

        // Write to the page the value.
        Response.Write(String.Concat("Selected Items: ", YrStr));
    }
_

if (!IsPostBack) { }条件を使用していることを確認してください。ページを更新するたびにロードすると、実際にデータが破壊されるためです。

27
Walk

次のようなものを試してください:

foreach (ListItem listItem in YrChkBox.Items)
{
    if (listItem.Selected)
    { 
       //do some work 
    }
    else 
    { 
      //do something else 
    }
}
5
MethodMan

チェックボックスリストの選択値とセパレータ

 string items = string.Empty;
        foreach (ListItem i in CheckBoxList1.Items)
        {
            if (i.Selected == true)
            {
                items += i.Text + ",";
            }
        }
        Response.Write("selected items"+ items);
3
kavitha Reddy

これを実装するエレガントな方法は、次のような拡張メソッドを作成することです。

public static class Extensions
{
    public static List<string> GetSelectedItems(this CheckBoxList cbl)
    {
        var result = new List<string>();

        foreach (ListItem item in cbl.Items)
            if (item.Selected)
                result.Add(item.Value);

        return result;
    }
}

次に、このようなものを使用して、すべての値を「;」で区切った文字列を作成します。

string.Join(";", cbl.GetSelectedItems());
2
Fred Mauroy

// Page.aspx //

// To count checklist item

  int a = ChkMonth.Items.Count;
        int count = 0;

        for (var i = 0; i < a; i++)
        {
            if (ChkMonth.Items[i].Selected == true)
            {
                count++;
            }
        }

// Page.aspx.cs //

  // To access checkbox list item's value //
   string YrStrList = "";
        foreach (ListItem listItem in ChkMonth.Items)
        {
            if (listItem.Selected)
            {
                YrStrList = YrStrList + "'" + listItem.Value + "'" + ",";
            }

        }

        sMonthStr = YrStrList.ToString();
0
priya uthaya