I did something similar yesterday, except when each item was processed I flushed a 10x10 pixel gif to the screen, as each gif was flushed it created a progress bar effect because each gif sat directly next to the last one, it looked great and was basically a real-time progress bar. I was pleased with myself yesterday! ;)
Sam ----- Original Message ----- From: "Chris Tifer" <[EMAIL PROTECTED]> To: "ActiveServerPages" <[EMAIL PROTECTED]> Sent: Thursday, September 26, 2002 7:49 PM Subject: Re: In-Progress Message > True. Or, if it's in a table, end the table, THEN response.Flush it to > the client. > > If you want to see Response.Flush in action, go to my website: > http://www.emailajoke.com > > and create a list of people to receive jokes. Then, send a joke > to your list and as each one is e-mailed, I write out the name and > e-mail address to the screen so you know where it's at in processing. > > That's how I know this works... > > Chris Tifer > http://www.emailajoke.com > > ----- Original Message ----- > From: "Tim Fletcher" <[EMAIL PROTECTED]> > To: "ActiveServerPages" <[EMAIL PROTECTED]> > Sent: Thursday, September 26, 2002 8:46 AM > Subject: RE: In-Progress Message > > > > hi, > > make sure the text you are displaying isn't in a table. > > because otherwise the text wont appear until the </table> tag has been > sent > > > > HTH > > Tim Fletcher > > > > -----Message d'origine----- > > De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > Envoy� : jeudi 26 septembre 2002 17:44 > > � : ActiveServerPages > > Objet : 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.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]
