How to send user to a new webpage at a specified time lapsed after opening the current page using a C# code just like (imaginary pseudo code)
OnTime_EventHandler(int DateTime timelapsed)
{
Response.Redirect("tothe_new_pagename")
}//pseudo over
as we write
On_Button1_click(sender,object)
{
Response.Redirect("__secondDefault_page");
} ?
Thanks to all.