OnRowUpdated
我想知道和之间的区别OnRowUpdating
。我给了OnRowUpdated
和。不触发。只有工作正常OnRowUpdating
gridview
OnRowUpdated
OnRowUpdating
请澄清这一点。
文档是一个很好的起点——
http://msdn.microsoft.com/en-GB/library/system.web.ui.webcontrols.gridview.onrowupdating.aspx
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.onrowupdated.aspx
所以总结一下——
RowUpdating 事件在单击行的更新按钮时引发,但在GridView 控件更新行之前。
RowUpdated 事件在单击行的更新按钮时引发,但在GridView 控件更新行之后。
They are both used for two different things. It depends on whether you are accessing the row before or after the update.