Protected Sub gvMasterPlan_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvMasterPlan.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
If DV.Item(e.Row.RowIndex).Row("firmweight") = True Then 'e.Row.Cells(0).ForeColor = Color.Blue 'ถ้า cell 0 - 22 สามารถ run ได้ปกติ
e.Row.Cells(23).BackColor = Color.Green 'ถ้าเป็น cell สุดท้ายจะ error เนื่องจาก cell 0 เป็น autogenerateeditbutton
Else
e.Row.Cells(23).BackColor = Color.Red
End If
End If
End sub
ทำอย่างไรจะเปลี่ยน back color ให้ตรง column 23 ได้ครับ
Tag : .NET, Ms SQL Server 2005, Web (ASP.NET), VS 2008 (.NET 3.x)