Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs)
If e.Row.RowType = DataControlRowType.DataRow Then
Dim EditButton As ImageButton = TryCast(e.Row.Cells(1).Controls(0), ImageButton)
EditButton.AlternateText = "แก้ไข"
EditButton.ToolTip = "แก้ไข"
'เนื่องจาก controls(1) = LiteralControl จึงใช้ Controls(2)
Dim DeleteButton As ImageButton = TryCast(e.Row.Cells(1).Controls(2), ImageButton)
DeleteButton.AlternateText = "ลบ"
DeleteButton.ToolTip = "ลบ"
End If
End Sub
Protected Sub gvwUsers_RowCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvwUsers.RowCreated
If e.Row.RowType = DataControlRowType.DataRow Then
Dim btn As ImageButton = CType(e.Row.Cells(6).Controls(0), ImageButton)
btn.OnClientClick = "if (confirm('คุณต้องการลบผู้ใช้นี้หรือไม่?') == false) return false;"
btn.ToolTip = "ลบผู้ใช้"
End If
End Sub