我正在使用ASP.net 4.如何使用OnRowDataBound事件循环读取行中每个单元格的值?
感谢。
答案 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;
}
}
- 帕维尔