Page has a header and an iFrame. The iFrame has content from a 3rd party app. The 3rd party app is leaded from a different server than the page. The user will spend most of their time in the iFrame.
If the user spends most of their time in the iFrame the top page session will timeout.
What possible ways are there to prevent that? Is there a way to detect post back events in the iFrame and increment the timeout timer in the top page?
Any sample code is appreciated.
Thanks
You could add another, hidden IFrame on the main page that is set to refresh every 10 minutes (or whatever sits within the session timeout). This would cause the session on the main page to stay alive without the user experiencing any page refreshes.
EDIT to add requested example