In my MVC application, I have a server side event that gets attached to the UploadProgressManager:
Hello Paul,
Thank you for contacting Infragistics Developer Support!
Please move your registration of the event handlers in the Global.asax into Application_Start method.
Paul said:UploadProgressManager.Instance.AddFinishingUploadEventHandler("serverID1", new EventHandler<UploadFinishingEventArgs>(handler));
To access the handler method set it as static.
Let me know if that resolves your issue.
That does work. The handler event is now being called. The problem I am having with making this static is that I can no longer retrieve the controller/user information. In 13.2.2300 I was able to make this method non-static which allowed me to pull the username. How can I retrieve the username now?