Hi, does anybody know how to implement a site loader? I am sure you've seen one: on Expedia.com when you submit your search the page first shows you "please wait" (or something like that) and then redirects you to the results page. Any help is greatly appreciated, Alex
All right brain, you don't like me and I don't like you, but let's just do this one thing so I can get back to killing you with beer.<br /> <br />- Homer Simpson
Satya Narayana
Greenhorn
Joined: Nov 08, 2000
Posts: 9
posted
0
We can do that using client side script!! After submitting a form, servlet throws Please wait page. This page contains a javascript(document.location=<url with submitted form parameters> ) to do the actual form submission. This approach have some other advantages. We can Submit all the forms to one servelt(it simply generates please wait screen) and it will determines dynamically the actaul destination. -SaTyA-