F
fleimeris
hello,
private void Page_Load(object sender, System.EventArgs e)
{
this.Response.Write("1<br />");
this.Response.Flush();
Thread.Sleep(5000);
this.Response.Write("2<br />");
}
when i run this page, it just loads for 5 seconds and then displays "1 2". i
want to write it "1", then wait for 5 secs and write "2". how do i do it ?
thanks
private void Page_Load(object sender, System.EventArgs e)
{
this.Response.Write("1<br />");
this.Response.Flush();
Thread.Sleep(5000);
this.Response.Write("2<br />");
}
when i run this page, it just loads for 5 seconds and then displays "1 2". i
want to write it "1", then wait for 5 secs and write "2". how do i do it ?
thanks