Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Push button in DataGrid
Message
 
À
23/09/2004 08:24:29
Jerry Tovar
Dana Corporation Dana It
Maumee, Ohio, États-Unis
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00945320
Message ID:
00945375
Vues:
18
In the grid property window, specify doEdit for EditCommand.


private void InitializeComponent()
{
this.DataGrid1.EditCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.doEdit);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion

private void doEdit(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
Response.Write("editing");
}
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform