I just purchased a license so I could get support for this issue... I have been communicating with support by email.
I am using the free Ajax Progress Bar control.
It works well In IE but is failing in Firefox and Chrome for some reason.The "long processing time" server function is activated from another server-side function using this code...
Code: C#
ltScript.Text = string.Format(@"<script type='text/javascript'>setTimeout(function(){{eo_GetObject('{0}').startTask(); window.location='MyProjects.aspx?show={1}';}}, 100);</script>", progProcess.ClientID, jobkey);
That code is derived from code that you sent me. IThe "window.location=..." statement is added after the "eo_GetObject..." statement in order to accomplish a redirect, which was not working when I used a Response.Redirect at the end of the "long processing time" server function.
It looks to me like the "long processing time" server function...
Code: C#
protected void progProcess_RunTask(object sender, EO.Web.ProgressTaskEventArgs e)
is never called... because I never make it to a break point placed at the very beginning of that function.
I hope you can help me figure out why it works well in IE (ver 9) but not in Firefox (ver 7) or Chrome (ver 15).