Torna al Thread

Protected Sub GridView1_DataBound(sender As Object, e As EventArgs) Handles GridView1.DataBound For index As Integer = 0 To Me.GridView1.Rows.Count - 1 If GridView1.Rows(index).Cells(8).Text = 0 Then Dim imgbutton As ImageButton = TryCast(GridView1.Rows(index).Cells(9).Controls(0), ImageButton) imgbutton.ImageUrl = "~/Images/1.png" Else : Dim imgbutton As ImageButton = TryCast(GridView1.Rows(index).Cells(9).Controls(0), ImageButton) imgbutton.ImageUrl = "~/Images/0.png" End If Next End Sub
Copyright © dotNetHell.it 2002-2024
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5