Rowdatabound

Résolu
garnier54 Messages postés 158 Date d'inscription mardi 17 janvier 2006 Statut Membre Dernière intervention 9 décembre 2018 - 3 janv. 2008 à 11:11
garnier54 Messages postés 158 Date d'inscription mardi 17 janvier 2006 Statut Membre Dernière intervention 9 décembre 2018 - 3 janv. 2008 à 15:42
bonjour,

je voudrais recuperer dans mon evenement rowdatabound l'index de ma table
e.Row.Cells(0) mais le ctype me marche pas (conversion impossible)
comment je peux faire
voici mon code

merci


Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound

If e.Row.RowType = DataControlRowType.DataRow Then

Dim IdImage As integer = CType(e.Row.Cells(0), integer)

End If
End Sub

1 réponse

garnier54 Messages postés 158 Date d'inscription mardi 17 janvier 2006 Statut Membre Dernière intervention 9 décembre 2018
3 janv. 2008 à 15:42
c'est bon j'ai trouve un exenple sur le net
voici la solution pour recuperer la valeur d'un champs
dans un rowdatabound



Protected Sub GridView_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView.RowDataBound

dim test as string = nothing

' S'assurer que la ligne est bien une ligne Data (Pas entête, pied etc...)

If e.Row.RowType = DataControlRowType.DataRow Then

' Récupéation de la valeur

test = e.Row.DataItem("Non d'un champ")

End If

End Sub

Nicolas
3
Rejoignez-nous