Newer posts are loading.
You are at the newest post.
Click here to check if anything new just came in.

March 08 2010

rogeriopvl

Answer by rogeriopvl for Display processing page then redirect when complete

That sounds like a Javascript/Ajax task.

Ajax calls are asynchronous, and this makes them ideal for what you are trying to achieve.

You send the form content through an ajax request and then manipulate the DOM of the page to show something like a loading bar while the request is taking place. When the request finishes you can then manipulate the DOM again to show the result of the form processing, or redirect to a new page with that info.