I have a asp.net / C# site with multiple pages in an specific order. If there is no user interaction (mouse movement or keypresss) on the page for 1 min, the user should be redirected to the next page (I allready know the url from the next page).
What's the best way to accomplish that? Thnx in advance.
EDIT:
So far I have some code that was written by someone else in C# / VB:
Response.AppendHeader("Refresh", string.Format("{0}; url={1}", DisplayDuration.ToString(), NextPage));
The display duration is defined in a DB.