Here's how I want the control to work. Click edit on a row in gridview. There's a textbox in one of the columns, I would like it to be blank even though there's data in the database for that column, but when I click update I would like whatever new text the user entered to update the database for that column. It would be one-way databinding, but the other way?
|
|
I used a linq data source. |
||
|
|
|
|
Here's how I did it using an sql datasource with the select,update and delete methods generated. First, you'll need to make any column that you want to edit like this a template field with an item template and and edit item template:
Next handle the gridview's on update event:
Even if you are using something other than an SQL Datasource this should be the basic solution. |
||
|
