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?

Re: Displaying Progress on An ASP Page by Bob

Bob
Wed Jul 05 10:39:10 CDT 2006

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.



Re: Displaying Progress on An ASP Page by SeanHarrop

SeanHarrop
Thu Aug 31 08:36:01 CDT 2006

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?



"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.
>
>
>

Re: Displaying Progress on An ASP Page by Anthony

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.
> >
> >
> >



Re: Displaying Progress on An ASP Page by PM

PM
Thu Aug 31 16:00:11 CDT 2006


"Sean Harrop" <SeanHarrop@discussions.microsoft.com> escreveu na mensagem
news:CFF8C804-AA25-4C4E-B23E-F80F7E8D9402@microsoft.com...

Along with what Anthony said, try also this:

A progress bar made with a line of images (colored squares or something like
that), each one with an id.
Just before each Response.flush, send some scripting code, that will change
the src for each image, like a square with a diferent color.

This should work.