0

这是我的视图状态的代码。但它只存储一个值。我需要的是它将选定的多个值保留在复选框中。这种方法是在分页情况的gridview中保持/保持复选框的值。

public void chkAssignee_OnCheckedChanged(object sender, EventArgs e)
       {
        CheckBox selectBox = (CheckBox)sender;
        GridViewRow myRow = (GridViewRow)selectBox.Parent.Parent;  // the row
        GridView myGrid = (GridView)myRow.Parent.Parent; // the gridview
        string ID = myGrid.DataKeys[myRow.RowIndex].Value.ToString();
        GridViewRow rowSelect = (GridViewRow)selectBox.Parent.Parent;

        int a = rowSelect.RowIndex;

        ViewState["id"] = ID;
        }
4

1 回答 1

1

尝试遵循以下代码可能会对您有所帮助。


public void chkAssignee_OnCheckedChanged(object sender, EventArgs e)
    {
        CheckBox selectBox = (CheckBox)sender;
        GridViewRow myRow = (GridViewRow)selectBox.Parent.Parent;  // the row
        GridView myGrid = (GridView)myRow.Parent.Parent; // the gridview
        string ID = myGrid.DataKeys[myRow.RowIndex].Value.ToString();
        GridViewRow rowSelect = (GridViewRow)selectBox.Parent.Parent;

    int a = rowSelect.RowIndex;
    ArrayList SelecterdRowIndices=new ArrayList();
    if(ViewState["SelectedRowIndices"]!=null)
    {
        SelecterdRowIndices=(ArrayList)ViewState["SelectedRowIndices"];
        bool flag=false;
        foreach (int i in SelecterdRowIndices)
        {
            if(i==Convert.ToInt32(ID))
            {
                flag=true;
                break;
            }   
        }
        if(!flag)
        {
            SelecterdRowIndices.Add(ID);
        }
    }  
    else
    {
         SelecterdRowIndices.Add(ID);
    }
    ViewState["SelectedRowIndices"] = SelecterdRowIndices;

}

于 2012-11-29T11:31:05.153 回答