|
Blightly, One answer to your question is have the browser automatically requery the server on a periodic interval. Netscape Navigator and Internet Explorer can do this with the "setInterval()" method. For example, the following page will automatically refresh itself every 15 seconds. ---------------------------------------------------------------------------- ------------ <html> <head> <title>Timer Test</title> </head> <body onLoad="window.setInterval('winRefresh()',15000)"> <p>Hello World!!!</p> </body> <script Language="JavaScript"><!-- function winRefresh () { history.go(0); } </script> </html> ---------------------------------------------------------------------------- ------------ <snip> What techniques do you use to inform the user that an action is taking place on the server and the user should wait around for a length of time. I am specifically looking for browser based solutions. I want the user to be able to "click" to start a function on the server, receive a pop-up message informing them to "hold their horses" (maybe show a status bar), and then the pop-up automatically close when the server function is complete (or cancelled by the user). <end snip> +--- | This is the Midrange System Mailing List! | To submit a new message, send your mail to MIDRANGE-L@midrange.com. | To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com. | To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.