Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Push button in DataGrid
Message
 
 
To
23/09/2004 08:24:29
Jerry Tovar
Dana Corporation Dana It
Maumee, Ohio, United States
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00945320
Message ID:
00945375
Views:
17
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");
}
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform