-1

我需要以编程方式在 gridview 中设置一些绑定字段的可见性。有人知道怎么做这个吗?

谢谢

4

1 回答 1

2

你可以简单地做到这一点,

    int colIndStudID = 1;
    int colIndUnitID = 2;

    GridView1.HeaderRow.Cells[colIndStudID].Visible = false;
    GridView1.HeaderRow.Cells[colIndUnitID].Visible = false;
    foreach (GridViewRow gv in GridView1.Rows)
    {
        gv.Cells[colIndStudID].Visible = false;
        gv.Cells[colIndUnitID].Visible = false;
    }

通过这个链接。包含与您的要求完全匹配的示例。

希望它有帮助。

于 2013-05-23T10:52:20.410 回答