2
我有一個gridview並修改它以下這篇文章:http://msdn.microsoft.com/en-us/library/aa992036.aspx#Y3473 允許批量更新。每當我試着在這個循環中更新行:Gridview行更新錯誤
For Each r As GridViewRow In GridView1.Rows
If IsRowModified(r) Then GridView1.UpdateRow(r.RowIndex, False)
Next
我得到這個錯誤:
You have specified that your update command compares all values on SqlDataSource 'ARDataSource', but the dictionary passed in for oldValues is empty. Pass in a valid dictionary for update or change your mode to OverwriteChanges.
我不知道這可能由以下原因引起?
X.X我應該先嚐試一下。我只是認爲這是另一回事,因爲我之前使用過gridviews/datasources,之前從未遇到過這種情況。 – Shawn