Researching this problem I have seen other threads indicating this functionality may no longer be working in the Ajax Control Toolkit most recent version.
In my Gridview onrowcreate I successfully create the hover over image but it never reaches my DynamicServiceMethod (I have a breakpoint with the method it fails prior to it) I followed this tutorial http://www.ezzylearning.com/tutorial.aspx?tid=2861497
Any suggestions?
My Code
<ajaxToolkit:PopupControlExtenderID="PopupControlExtender1"runat="server"PopupControlID="Panel1" TargetControlID="Image1"DynamicContextKey='<%# Eval("ProductID") %>'DynamicControlID="Panel1" DynamicServiceMethod="GetDynamicContent"Position="Bottom"></ajaxToolkit:PopupControlExtender>
Code behind
[System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]
publicstaticstring GetDynamicContent(string contextKey)
{...}