IIS handling multiple requests for the same ASP

S

Swarup

<%
Response.buffer = true
Dim a
a = 0

while a < 1000
Response.write "Im Looping"
Response.flush
a = a+1
wend
Response.end
%>

With this ASP page when 2 clients request from 2 diff
machines to the server(a dedicated machine hosting the ASP
on IIS), only one client is able to get the response. For
the other client the IE ball keeps on rolling.

Ideally I expect IIS to handle both the requests at the
same time, so that both the clients should see the
text "Im looping" on their browser.

Am I missing something???
-S
 
R

Ray at

Do you eventually see the full result in the other browser? I do remember
something about how IE won't display any contents until a certain number of
bytes of data has been sent. I don't know what that number is. I believe
it was Curt_C who posted the info here once. You could try doing:

<%
response.write string(1000, "x")
response.flush
'''rest of your code.

%>

Ray at work
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,899
Latest member
RodneyMcAu

Latest Threads

Top