Tamer_Ahmed Posted June 2, 2004 Posted June 2, 2004 Can any body explain the all process of how wo make the DataGrid Editable in ASP.net i want explantation not just the code Quote
*Experts* Bucky Posted June 2, 2004 *Experts* Posted June 2, 2004 Okay, here's a really general overview. At design-time, add a column to your grid that contains an Edit button or an Edit link. In the EditCommand event handler of the grid, set the EditItemIndex to the item chosen to edit (e.Item.ItemIndex) and re-bind the grid. Now the row can be edited by the user when the Edit button is clicked. To actually save or discard the changes, however, you must add code in the UpdateCommand and CancelCommand event handlers. This is, as I mentioned, really general; feel free to ask specifics. Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
georgepatotk Posted June 3, 2004 Posted June 3, 2004 http://www.csharpfriends.com/quickstart/aspplus/samples/webforms/ctrlref/webctrl/datagrid/doc_datagrid.aspx have a look over here. this is the best explanation I had ever found for asp.net datagrid. Quote George C.K. Low
legendgod Posted June 3, 2004 Posted June 3, 2004 sadly http://www.csharpfriends.com/quickstart/aspplus/samples/webforms/ctrlref/webctrl/datagrid/doc_datagrid.aspx have a look over here. this is the best explanation I had ever found for asp.net datagrid.sadly the source code pages do not show source code anymore.... :( Quote http://blog.legendgod.com
eramgarden Posted June 3, 2004 Posted June 3, 2004 This is the best tutorial i've come across: http://aspnet.4guysfromrolla.com/articles/040502-1.aspx Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.