Re: Do Events
From: Popeye (paul_at_pgcomputing.not)
Date: 10/08/04
- Next message: kirana_dayalu_at_yahoo.com: "protecting non-asp files"
- Previous message: JayB: "Re: Drop Down Default Selected"
- In reply to: Ray Costanzo [MVP]: "Re: Do Events"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 08 Oct 2004 18:12:15 GMT
Thanks for this I got it to work fine in the end.
Regards
Paul
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:OnFfy4MrEHA.3288@TK2MSFTNGP12.phx.gbl...
> The default setting in >= IIS 5.0 is the buffer all the response text,
> meaning that no response is sent to the client until all the server-side
> processing is finished. You can either turn off buffering for that page
> (Response.Buffer = False), change it globally for the site or application,
> or just use Response.Flush in your code.
>
> <%
>
> do while doing something that takes a really long time
> '''code, code, code
> Response.Flush
> '''code, code, code
> Loop
> %>
>
> Ray at home
>
> "Popeye" <paul@pgcomputing.not> wrote in message
> news:04l9d.4693$xb.1919@text.news.blueyonder.co.uk...
>> Is there a command within ASP similar to the Do Events command in VB6.
>> The problem I have is that an asp page that I have written outputs many
>> lines after extracting data from WMI. In total there are about 1000 lines
>> generated which are displayed within the browser and saved to a database.
>>
>> The browser displays the correct results and they are saved into the
>> database. But the browser only displays the results after it has
>> completed the entire script. Is it possible to get it to output lines
>> before continuing with the rest of the script so I can display a section
>> at a time.
>>
>> Paul
>>
>
>
- Next message: kirana_dayalu_at_yahoo.com: "protecting non-asp files"
- Previous message: JayB: "Re: Drop Down Default Selected"
- In reply to: Ray Costanzo [MVP]: "Re: Do Events"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|