Re: Generic web-dev question: Best way to do a processing page?

2010-05-13 Thread derek
On May 13, 9:19 pm, robotmurder wrote: > Usually when I do this for an upload, etc... it means that a user just > did something that resulted in an row being created in the db. I > usually keep a boolean field in the table for processing. Then when I > load the next page I can just query that valu

Re: Generic web-dev question: Best way to do a processing page?

2010-05-13 Thread robotmurder
Usually when I do this for an upload, etc... it means that a user just did something that resulted in an row being created in the db. I usually keep a boolean field in the table for processing. Then when I load the next page I can just query that value right before I choose the template to see if i

Re: Generic web-dev question: Best way to do a processing page?

2010-05-13 Thread derek
On May 1, 4:39 pm, Javier Guerra Giraldez wrote: > On Sat, May 1, 2010 at 7:22 AM, Joshua Russo wrote: > > This is mainly just curiosity at the moment. How do you create a > > "processing" intermediate page, like you see on travel sites when they are > > looking for the rates? I would always avoi

Re: Generic web-dev question: Best way to do a processing page?

2010-05-01 Thread Javier Guerra Giraldez
On Sat, May 1, 2010 at 7:22 AM, Joshua Russo wrote: > This is mainly just curiosity at the moment. How do you create a > "processing" intermediate page, like you see on travel sites when they are > looking for the rates? I would always avoid this if at all possible, but > sometimes you have a proc

Re: Generic web-dev question: Best way to do a processing page?

2010-05-01 Thread Dexter
You could try to juggle with comet, but I wouldn't if its the best solution, Otherwise you could let them fill in an email address, and send the result to that emailaddress On Sat, May 1, 2010 at 2:22 PM, Joshua Russo wrote: > This is mainly just curiosity at the moment. How do you create a > "

Generic web-dev question: Best way to do a processing page?

2010-05-01 Thread Joshua Russo
This is mainly just curiosity at the moment. How do you create a "processing" intermediate page, like you see on travel sites when they are looking for the rates? I would always avoid this if at all possible, but sometimes you have a process that takes longer than usual. I've been looking around t