[筆記] 在GRIDVIEW中的RowDataBound事件中使用FindControl

摘要:[筆記] 在GRIDVIEW中的RowDataBound事件中使用FindControl

在RowDataBound  使用FindControl 時,要在最前面加上下列程式碼,不然會找不到資料
 
if (e.Row.RowType != DataControlRowType.DataRow) // 非資料行, 離開
        return;