
- Forum
- Programming Talk
- Microsoft .NET
- grid view
grid view
This is a discussion on grid view within the Microsoft .NET forums, part of the Programming Talk category; i want to add data in grid view edit exiting data .. how it can be done...
-
03-03-2008, 03:29 AM #1
- Join Date
- Feb 2008
- Answers
- 1
grid view
i want to add data in grid view edit exiting data .. how it can be done
-
You can make use of EditCommandColumn and or EditItemIndex
By using EditCommandColumn you can perform in-place editing of data in single row.
With EditItemIndex, you can edit the data automatically, the grid will inserts values that needs to be edited in a TextBox or a CheckBox controls.
If you want to customise the way data is edited in control, that is, if you want to customise binding data to textbox or checkbox controls you have to use TemplateColumn

Reply With Quote





