我想知道如何从GridView
访问编辑和更新按钮?
我的意思是,如果我点击GridView
网站上的编辑按钮,我想从表格中获取一些值。
例如:button1
事件。
答案 0 :(得分:0)
您可以使用GridView rowupdating事件。
protected void myGridView_RowUpdating(object sender, GridViewUpdateEventArgs e)
GridViewUpdateEventArgs
包含NewValues
和OldValues
的属性。
如果实际上没有更改,我经常使用以下内容取消更新。
foreach (DictionaryEntry d in e.NewValues)
{
String oldValue = e.OldValues[d.Key] == null ? "" : e.OldValues[d.Key].ToString();
String newValue = d.Value == null ? "" : d.Value.ToString();
if (oldValue != newValue)
{
return; // -- change detected
}
}
e.Cancel = true; // -- don't execute the update
myGridView.EditIndex = -1;
答案 1 :(得分:0)
此外,如果您使用SQLDataSource,如果您指定正确的查询,它可以自动为您执行此操作。