Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Refresh 1ce
Name: DJ-BROWNTHUG Date: June 2, 2004 at 12:54:55 Pacific OS: XP CPU/Ram: 192mb ( Intel celeron pro
Comment:
Hi is there is any Php or Html code that can make a page refresh one tim when thay visite a Page ( only 1ce )
Name: safeTsurfa Date: June 3, 2004 at 07:14:13 Pacific
Reply:
You can do this with a meta tag in the page header. http://webdesign.about.com/cs/metatags/a/aa080300a.htm
0
Response Number 2
Name: DJ-BROWNTHUG Date: June 3, 2004 at 18:21:11 Pacific
Reply:
well i want a one it refresh 1 tme not evry 600 sec or 1 sec
0
Response Number 3
Name: safeTsurfa Date: June 4, 2004 at 06:35:21 Pacific
Reply:
Set the variable "600" in the tag to whatever you need. It is measured in seconds, so 60 = 1 minute, and it should occur only once.
0
Response Number 4
Name: chaud Date: June 4, 2004 at 07:36:21 Pacific
Reply:
So, it will still refresh every min...
Here is one that might work...god...no coders here... <HTML> <HEAD> <TITLE>Test reload page once each "back" request.</TITLE> <script language="Javascript"> function testReload(){ var testReload=0; if (document.myForm.myFlagReload.value=="1"){ alert("Flag is 1, changing to 2"); document.forms[0].myFlagReload.value="2"; testReload=1; } else { alert("Flag is not 1, changing to 1"); document.myForm.myFlagReload.value="1"; testReload=0; } if (testReload==0){location.reload(true)}; }; </script>
Name: safeTsurfa Date: June 5, 2004 at 06:45:04 Pacific
Reply:
Not a question of "no coders", so step off your high horse before you fall and break your neck. For myself, I don't know or use that because I despise javascript, or any other which depends on the client side for its functionality.
Summary: Is there a way to use javascript to refresh a page once onLoad? w/out getting stuck in a loop? I have this but it gets stuck in a loop: <html> <head> <title>Untitled Document</title> <...
Summary: Hey, i am developing a website for the board of education. But, i have a little problem... I dont know how to refresh just the portion of the website. What i mean, is that like I will put a photo and ...
Summary: ok so META is the obvious way to refresh a page after a certain amount of time but what about if that time is 30 minutes... in theory it should work flawlessly, but are their any hidden problems when ...