Gridview RowDataBound循环遍历单元格

时间:2011-01-07 02:19:40

标签: asp.net

我正在使用ASP.net 4.如何使用OnRowDataBound事件循环读取行中每个单元格的值?

感谢。

1 个答案:

答案 0 :(得分:4)

也许以下方法会有所帮助。

标记:

<asp:GridView id="testGrid" OnRowDataBound="testGrid_RowDataBound" ... runat="server">
    ......
</asp:GridView>

代码隐藏:

protected void testGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
    string val = string.Empty;

    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        foreach(TableCell cell in e.Row.Cells)
            val = cell.Text;
    }
}

- 帕维尔