Hi all, I have a small C# ASP.NET app, and want to include an Ajax progress counter.
The architecture is currently like this: Web Application --> calls a class that does the upload
For example, in default.aspx, I call :
FileHelper fh = new FileHelper()
fh.MoveFiles(file)
I have an Ajax control that fires when the above is called. This is a control that resides on the website class/project.
How do I update the progress counter from the Filehelper class? (I don't think calling the control directly would work as it would be a circular reference) Also how do I continuously update the counter?
Thanks all