Update:
let say i have 4 address in my database and when i am displaying my address in the gridview which is readonly i have no problem. but how would you edit all 4 address? (this is just an examplei might have 4 or 3 or 2 or 10 address) when end user click on “EDIT” the row?
Update end
i have a gridview control with 3 columns (id, name, address) and the address column may have one or more address so when the user click on Edit how would i make that column editable? since the address column might have one or more address?
adding the TextBoxes on the RowCreated event and use .Controls[rowId] to access them: