It seems that "response.buffer = false" is not working. I need teh ASP page
to print PROGRESSIVELY what's going on. I have a long script to run and it
would be more assuring to the user to see the web page go as it's running.
Well, it doesn't work. here's a greatly simplified version of what I'm
trying to do. I craeted a simple for-next loop to mimic a "slow loop". I am
running WIndows 2000 with IIS 5.0.
I've been trying to figure this one out all day.
- Steve
<% response.buffer = false %>
<HTML>
<BODY>
<%
for i = 1 to 10000000
next
Response.Write "Iteration #1<BR>"
for i = 1 to 10000000
next
Response.Write "Iteration #2<BR>"
for i = 1 to 10000000
next
Response.Write "Iteration #3<BR>"
%>
</BODY>
</HTML>
-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
Check out our new Unlimited Server. No Download or Time Limits!
-----== Over 80,000 Newsgroups - 19 Different Servers! ==-----
Response.Buffer = True
(do something)
Response.Flush
(do something else)
Response.Flush
(etc...)
"Steve Quezadas" <stev...@earthlink.net> wrote in message
news:3b7b1255$1...@goliath.newsgroups.com...
--
Manohar Kamath
Editor, .netWire
www.dotnetwire.com
"Steve Quezadas" <stev...@earthlink.net> wrote in message
news:3b7b1255$1...@goliath.newsgroups.com...
_____________________________
Jason Natale
Navantis Inc.
Toronto ON
"Steve Quezadas" <stev...@earthlink.net> wrote in message
news:3b7b1255$1...@goliath.newsgroups.com...
Here is a repost of my question. I am knocking my head trying to figure this
out, and the previous questions on newsgroups isn't shedding light on this
one.
"Steve Quezadas" <stev...@earthlink.net> wrote in message news:<3b7c2ae0$1...@goliath.newsgroups.com>...