T
Ted Burhan
Can anyone please explain to me what Server.ScriptTimeout actually is?
I don't quite understand the explanation in the documentation.
In my aspx page, I typed in the following codes:
private void Page_Load(object sender, System.EventArgs e)
{
Server.ScriptTimeout = 2;
for (int i = 0;i < 10;i++)
Thread.Sleep(1000);
}
but the request wasn't timed out. So I figure that
I must be misunderstanding something here.
Anyone please...
Ted
I don't quite understand the explanation in the documentation.
In my aspx page, I typed in the following codes:
private void Page_Load(object sender, System.EventArgs e)
{
Server.ScriptTimeout = 2;
for (int i = 0;i < 10;i++)
Thread.Sleep(1000);
}
but the request wasn't timed out. So I figure that
I must be misunderstanding something here.
Anyone please...
Ted