悬赏分:10 浏览:277 次
我有2个GridView,想在其中一个GridView中,双击行时,更新另外一个Gridview的内容
protected void gvRoleConfigList_RowDataBound(object sender, GridViewRowEventArgs e){
e.Row.Attributes.Add("onDblClick", Page.GetPostBackEventReference(this, strID + "#"));
}
其中GridView双击事件代码如上,现在把这2个GridView放到UpdatePanel中,但是一双击gridview的行时,就触发整个页面刷新
有什么好的解决办法