2011-09-08 4 views

Répondre

0

Vous devez utiliser la propriété EditIndex de GridView.

GridView1.EditIndex=1; 
//code to rebind the GridView 

Ou gérer l'événement RowEditing de GridView avec le code suivant

GridView1.EditIndex=e.NewEditIndex; 
//code to rebind the GridView 
Questions connexes