Good day,
If I could trouble someone to explain to me how to solve my basic query:
I have an asp/vbscript page running a rather large script. It may take up to 30 secs to load. I'm working on cutting it down. However, during the time it runs, no other request to the server will be executed. It's like a queue.
I've been playing around with response.buffer but that doesn't seem to be the solution.
Can someone please help?
Here are the test pages I use:
PAGE1.asp
<%
response.Buffer=false
function tester()
Dim PauseTime, Start
PauseTime = 8 'Set Duration
Start = Timer 'Set start time
Do While Timer < Start + PauseTime
'nothing happening
Loop
response.Write("done")
end function
%>
------------------------
PAGE2.asp
<%
response.buffer=false
response.write("hello world")
%>
Thanks,
Al
If I could trouble someone to explain to me how to solve my basic query:
I have an asp/vbscript page running a rather large script. It may take up to 30 secs to load. I'm working on cutting it down. However, during the time it runs, no other request to the server will be executed. It's like a queue.
I've been playing around with response.buffer but that doesn't seem to be the solution.
Can someone please help?
Here are the test pages I use:
PAGE1.asp
<%
response.Buffer=false
function tester()
Dim PauseTime, Start
PauseTime = 8 'Set Duration
Start = Timer 'Set start time
Do While Timer < Start + PauseTime
'nothing happening
Loop
response.Write("done")
end function
%>
------------------------
PAGE2.asp
<%
response.buffer=false
response.write("hello world")
%>
Thanks,
Al