I have a gridview:
A column ( type int )
How can I get a value from a cell of current editing row.
How to get the value of the cell with the type int then the value + 1 ?
I have a gridview: A column ( type int ) How can I get
Share
Handle the
RowUpdating-event which occurs when a row’s Update button is clicked, but before theGridViewcontrol updates the row. When you don’t useTemplateFieldsyou use the cell’s Text property, otherwise useFindControlto get a reference to your controls.