ajaxToolkit PopupControlExtender 不工作。过时了?

ajaxToolkit PopupControlExtender not working. Outdated?

我被关注 this tutorial 但当 mouseover 时出现运行时错误:

Sys.ArgumentUndefinedException: Value cannot be undefined. Parameter name: type

问题出在这行代码中:

string OnMouseOverScript = string.Format("$find('{0}').showPopup();", behaviorID);
string OnMouseOutScript = string.Format("$find('{0}').hidePopup();", behaviorID); 

img.Attributes.Add("onmouseover", OnMouseOverScript); 
img.Attributes.Add("onmouseout", OnMouseOutScript);

对此有什么想法吗?我的目标是在 mouseover 特定列时获取 gridview row 的详细信息,例如引用链接上的演示。

通过将 AJAX Control Toolkit 更新到最新版本(2015 年 3 月的 v15.1)解决!