我刚遇到同样的问题。同一页面上的两个更新面板未嵌套且 UpdateMode="Conditional"。只要意识到当页面上的一个更新面板触发部分回发时,所有更新面板都会触发更新事件。如果您将 UpdatePanelAnimationExtender 连接到 UpdatePanel A,并且为不相关的 UpdatePanel B 触发了部分回发,则两者都会触发更新事件,并且 UpdatePanel A 的动画将只运行 OnUpdating 部分而不是 OnUpdated 部分(所以基本上动画会运行到一半)。
这就是我解决此问题的方法:确定触发了哪个更新面板。这可以通过获取脚本管理器的表单变量的值来找到。有问题的更新面板将在字符串中提及。使用此信息根据您的需要执行操作。
// Variable to hold ScriptManager. Just slap this in the class for the page.
private ScriptManager scriptManager;
// Get the ScriptManager. Put this in Page_Init handler.
// If you have the ScriptManager on the same page, just refer to it directly.
// If you have it on the master page, you can get a reference to it like so.
// The second line shows one way you can get a reference to the ScriptManager from
// a user control.
// FYI, the same code applies to a ToolkitScriptManager.
scriptManager = ScriptManager.GetCurrent(this);
// scriptManager = ScriptManager.GetCurrent(HttpContext.Current.Handler as Page);
// This function checks whether an UpdatePanel is being updated
private Boolean IsUpdatePanelUpdating(String sUPID)
{
String sUpdateValue = Request.Form[Request.Form.AllKeys.Where(s => s.EndsWith(scriptManager.ClientID)).FirstOrDefault()] ?? String.Empty;
return sUpdateValue.Contains(sUPID);
}
// This is code you can put somewhere (say within OnLoad handler) to make an
// UpdatePanel A get updated even if an unrelated UpdatePanel B is currently being
// updated.
if (!IsUpdatePanelUpdating(upA.ClientID))
upA.Update();
我希望这可以帮助别人。