Anthony
Thu Aug 31 12:12:04 CDT 2006
"Sean Harrop" <SeanHarrop@discussions.microsoft.com> wrote in message
news:CFF8C804-AA25-4C4E-B23E-F80F7E8D9402@microsoft.com...
> I have tried quite a few of the suggestions on various search engines, and
> they all work correctly in Firefox and Opera, but the moment I try it in
> Internet Explorer, IE does not render the page until it is complete, even
> though my ASP page uses
>
> Response.Buffer = True
>
> and
>
> Response.Flush
>
> Is there a way to trick IE into rendering the page?
>
You'll want Response.Buffer = False
You should also avoid tables IE will often deffer rendering until all the
table is received.
Sending a series of DIVs should work.
>
>
> "Bob Barrows [MVP]" wrote:
>
> > sam wrote:
> > > Hi - I have an ASP page - that will be making about 7 calls to a
> > > database.
> > >
> > > What I want is to show progress to the users so that they can tell
> > > each database call is in progress.
> > >
> > > The asp calling page works fine, but it only displays when the entire
> > > process has been completed.
> > >
> > > What I want is to be able to show dynimically - step 1 done; step 2
> > > done; etc.
> > >
> > > Any thoughts?
> >
> > Did you try Google?
> >
http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=GGLD,GGLD:2003-36,GGLD:en&q=ASP+Progress+Bar
> >
> > Here is a useful result from the above search:
> >
http://www.atgconsulting.com/progressbar.asp
> >
> > --
> > Microsoft MVP -- ASP/ASP.NET
> > Please reply to the newsgroup. The email account listed in my From
> > header is my spam trap, so I don't check it very often. You will get a
> > quicker response by posting to the newsgroup.
> >
> >
> >