I want to have a page where somebody can press the submit button and then it
will display a jpg for a couple of seconds and then print results. (I want
to give them the impression the system is thinking about something even
though it really isn't - perception an all....)
Any suggestions on how to do this?
TIA - Jeff.
Scott M. - 26 Jul 2007 13:40 GMT
In the <head> section of your web page:
<meta http-equiv="refresh" content="5;url=nextPageURL.aspx">
>I want to have a page where somebody can press the submit button and then
>it will display a jpg for a couple of seconds and then print results. (I
[quoted text clipped - 4 lines]
>
> TIA - Jeff.
Peter Bucher [MVP] - 26 Jul 2007 13:47 GMT
Hello Mufasa, hello Scott
You can use the approach from Scott, and modify it a little bit.
Add a runat="server" attribute to your <head> tag, then in your button_Click
eventhandler
add dynamically the meta tag.

Signature
Gruss, Peter Bucher
Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET
Scott M. - 26 Jul 2007 16:48 GMT
Why bother?
> Hello Mufasa, hello Scott
>
> You can use the approach from Scott, and modify it a little bit.
> Add a runat="server" attribute to your <head> tag, then in your
> button_Click eventhandler
> add dynamically the meta tag.
Eliyahu Goldin - 26 Jul 2007 14:31 GMT
If you wish, you can do everything on client side with a bit of
javascripting and using timer function window.setTimeout.

Signature
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
>I want to have a page where somebody can press the submit button and then
>it will display a jpg for a couple of seconds and then print results. (I
[quoted text clipped - 4 lines]
>
> TIA - Jeff.
Larry Bud - 26 Jul 2007 17:53 GMT
> I want to have a page where somebody can press the submit button and then it
> will display a jpg for a couple of seconds and then print results. (I want
> to give them the impression the system is thinking about something even
> though it really isn't - perception an all....)
>
> Any suggestions on how to do this?
Why in the world would you want to slow down your user, even if it is
for 5 seconds?
Scott M. - 27 Jul 2007 00:09 GMT
> Why in the world would you want to slow down your user, even if it is
> for 5 seconds?
...And, the winner is...