I've a webpage1 with a Button1.
protected void Button1_Click(object sender, EventArgs e)
{
Button1.Text = "Start....";
System.Threading.Thread.Sleep(50000);
Button1.Text = "End !";
}
I would like to be able to switch to WebPage2 without losing the task I started with Button 1. So when I go back to WebPage1 after 50seconds, I should be able to read "End !" on the button.
Is it possible? I have to do this with .net 4.0
Go to the complete details ...