Click here to get back home

tag to provoke reload

 HomeNewsGroups | Search | About
 comp.infosystems.www.authoring.html    Post an article   get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content
Subject Author Date
tag to provoke reload cartoper 02-12-2007
Get Chitika Premium
Posted by cartoper on February 12, 2007, 2:18 pm
Please log in for more thread options


I am working on a kiosk system that is driven by apache. After 5
minutes I want system to go back to the default page. I recall
seeing, and maybe even using some tag, I think it might have been a
meta data tag to tell the web browser to goto a curtain page after a
given period of time. What is the best way to do that in this day and
age?


Posted by Rik on February 12, 2007, 2:32 pm
Please log in for more thread options



> I am working on a kiosk system that is driven by apache. After 5
> minutes I want system to go back to the default page. I recall
> seeing, and maybe even using some tag, I think it might have been a
> meta data tag to tell the web browser to goto a curtain page after a
> given period of time. What is the best way to do that in this day and=

> age?


First of all, do not trust it to happen, it's easily blocked.
You could do this (redirect after 300 seconds):

        <meta http-equiv=3D"refresh" content=3D"300;url=3Dhttp://example.com">

Or javascript:
        function redirect(){
                window.location =3D "http://example.com/";
        }
        setTimeout(redirect,300000);

Never, ever trust this for any security whatsoever.
-- =

Rik Wasmus

Posted by cartoper on February 12, 2007, 5:05 pm
Please log in for more thread options


> > I am working on a kiosk system that is driven by apache. After 5
> > minutes I want system to go back to the default page. I recall
> > seeing, and maybe even using some tag, I think it might have been a
> > meta data tag to tell the web browser to goto a curtain page after a
> > given period of time. What is the best way to do that in this day and
> > age?
>
> First of all, do not trust it to happen, it's easily blocked.
> You could do this (redirect after 300 seconds):
>
> <meta http-equiv="refresh" content="300;url=http://example.com">
>
> Or javascript:
> function redirect(){
> window.location = "http://example.com/";
> }
> setTimeout(redirect,300000);
>
> Never, ever trust this for any security whatsoever.

Rik,

Even in a kiosk system where the web browser is running full screen
and the only input device the user has is a mouse? This is the
oooooonly situations I am concerned about;) When this site runs on a
non kiosk machine, I could care less if it resets or not;)

Thanks a million for your help!



Posted by Rik on February 12, 2007, 5:18 pm
Please log in for more thread options


>> > After 5
>> > minutes I want system to go back to the default page.
>>
>> First of all, do not trust it to happen, it's easily blocked.
>> You could do this (redirect after 300 seconds):
>>
>> <meta http-equiv=3D"refresh" content=3D"300;url=3Dhttp://exam=
ple.com">
>>
>> Or javascript:
>> function redirect(){
>> window.location =3D "http://example.com/";
>> }
>> setTimeout(redirect,300000);
>>
>> Never, ever trust this for any security whatsoever.
>
> Even in a kiosk system where the web browser is running full screen
> and the only input device the user has is a mouse? This is the
> oooooonly situations I am concerned about;) When this site runs on a
> non kiosk machine, I could care less if it resets or not;)


If you control the browser, it shouldn't be a problem.
-- =

Rik Wasmus

Posted by Harlan Messinger on February 12, 2007, 5:54 pm
Please log in for more thread options


cartoper@gmail.com wrote:
>>> I am working on a kiosk system that is driven by apache. After 5
>>> minutes I want system to go back to the default page. I recall
>>> seeing, and maybe even using some tag, I think it might have been a
>>> meta data tag to tell the web browser to goto a curtain page after a
>>> given period of time. What is the best way to do that in this day and
>>> age?
>> First of all, do not trust it to happen, it's easily blocked.
>> You could do this (redirect after 300 seconds):
>>
>> <meta http-equiv="refresh" content="300;url=http://example.com">
>>
>> Or javascript:
>> function redirect(){
>> window.location = "http://example.com/";
>> }
>> setTimeout(redirect,300000);
>>
>> Never, ever trust this for any security whatsoever.
>
> Rik,
>
> Even in a kiosk system where the web browser is running full screen
> and the only input device the user has is a mouse? This is the
> oooooonly situations I am concerned about;) When this site runs on a
> non kiosk machine, I could care less if it resets or not;)

Do you also need the previous user's history to be removed?

Similar ThreadsPosted
Memory clearing and reload. January 23, 2005, 3:00 pm
how to reload only part of html ? July 24, 2005, 12:42 am
opera doesn't reload iframe August 8, 2006, 6:28 am
Form Reload with Tainted Values April 28, 2008, 5:13 pm

Our other projects:

Art Dolls, Fairies and Mermaids - Sunnyfaces.net

Roy's Linux, Programming and Search Engines messages

1-Script XML SitemapXML Sitemap