問題
使用 TableCell特性取GridView裡的ButtonFiled欄位的值
解決方法
一個ButtonFiled型態是一個位於TableCell裡的控制項,所以如果要從Gridview取得某row的某column的控制項時,可採用以下方式:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//row裡的第1個column裡的第一個控制項
((Button)e.Row.Cells[0].Controls[0]).Enabled = true;
}
}
沒有留言:
張貼留言