0
I have a simple gridview:
A sql datasource to bind data from table data to gridview.
關於gridview行更新我想清除當前編輯行的某些列的單元格值,所以這些值也應該從表格數據中刪除。我怎樣才能做到這一點?如何刪除當前編輯行的某些單元格的值?
喜歡的東西:
SqlDataSource1.DeleteCommand = "Delete value from column1,column2 where [email protected]"; //I need the right statment
SqlDataSource1.Delete();