I’m using asp.net grid view.
I call some sql-server stored procedure and
attach it to the gridView:
gvResults.DataSource = dr;
gvResults.DataBind();
I want to make a specific column editable.
How do i attach the update sp to the view?
You can use the UpdateCommand
http://msdn.microsoft.com/en-us/library/ms972948.aspx