I added a backup task to my website, which performs a list of tasks that can take a long time.
In order to provide user feedback, I have a main page with two iframes.
The first iframe has a button that performs the backup behind the button click (so the page is posting for a minute or more). As it runs, a session variable is updated with each step as they complete.
I have a second iframe on this page, and inside that iframe there is an ASP.NET page that displays the progress session variable on a label.
The problem is that the second iframe only refreshes once all the steps in the first iframe have completed. This behavior is the same in my ASP.NET dev environment, as well as when deployed to IIS.
What can I do to make the second iframe refresh as the session variable is updated?