just make sure that Response.Buffer=True is the very first line in your ASP
page, for example:


<%
Response.Buffer=True
Response.Write "processing..."
Response.Flush

'connection string
'database stuff
'everything else
'close everything

Response.Write "complete."
Response.Flush
%>

...are you POSTing to this page? It may work much better if you use the GET
method.

HTH
Sam Thompson


----- Original Message -----
From: <[EMAIL PROTECTED]>
To: "ActiveServerPages" <[EMAIL PROTECTED]>
Sent: Thursday, September 26, 2002 4:43 PM
Subject: Re: In-Progress Message


> Thanks to everyone who sent a response. However, upon using Sam's
> suggestion, I am still getting a blank screen until the processing is
> complete. Then both the "Processing" and "Complete" messages appear.
>
> Any other ideas?
>
> And sorry for the double post. I am a digest recipient and am using the
> 15seconds.com form for postings. After sending the original question, I
> got a "Message Rejected" in my yahoo inbox. I re-submitted it and upon
> checking the list messages, of course both postings were there...
>
> Thanks.
>
> Kyle
>
>
>
>
> > <%
> > Response.Buffer=True
> > Response.Write "Processing..."
> > Response.Flush
> >
> > 'your database processing
> >
> >
> > Response.Write "Complete."
> > Response.Flush
> > %>
> >
> > HTH
> > Sam Thompson
> >
> > ----- Original Message -----
> > From: "Don Whitehead" <[EMAIL PROTECTED]>
> > To: "ActiveServerPages" <[EMAIL PROTECTED]>
> > Sent: Thursday, September 26, 2002 3:21 PM
> > Subject: RE: In-Progress Message
> >
> >
> > > Did you try the response.write with response.buffer=false preceeding
it?
> > >
> > > Don
> > >
> > > -----Original Message-----
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, September 25, 2002 4:01 PM
> > > To: ActiveServerPages
> > > Subject: In-Progress Message
> > >
> > >
> > > I know this issue has been raised before, but I can't find it in the
> > > archive search.
> > >
> > > I have a page that does quite a lot of database processing. I want to
show
> > > the user a "Please Wait" message during the data processing before the
> > > user is redirected to a "Thank You" screen after the processing is
> > > complete. I've tried a response.write before starting the processing
> > > without success.
> > >
> > > Any thoughts or suggestions that might work in this situation?
> > >
> > > TIA.
> > >
> > > Kyle
> > >
> > > ---
> > > You are currently subscribed to activeserverpages as:
> > > [EMAIL PROTECTED]
> > > To unsubscribe send a blank email to
> > > %%email.unsub%%
> > >
> > > ---
> > > You are currently subscribed to activeserverpages as:
> > [EMAIL PROTECTED]
> > > To unsubscribe send a blank email to
> > %%email.unsub%%
> > >
>
> ---
> You are currently subscribed to activeserverpages as:
[EMAIL PROTECTED]
> To unsubscribe send a blank email to
%%email.unsub%%


---
You are currently subscribed to activeserverpages as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to