Guest fgoba_ulinx Posted September 15, 2004 Posted September 15, 2004 I have a web site and i want this. When somebody visits my site, i want him to be auto-directed to ... adress How can I do that in Front Page? Or can somebody please give me the html code for it_? Quote Share this post Link to post Share on other sites More sharing options...
LobbDogg Posted September 15, 2004 Posted September 15, 2004 just search for some javascript code, that should do it. Check out Tutorialized Quote Share this post Link to post Share on other sites More sharing options...
Guest fgoba_ulinx Posted September 15, 2004 Posted September 15, 2004 www.designerwiz.com --> Real Good Quote Share this post Link to post Share on other sites More sharing options...
GTSticky Posted September 15, 2004 Posted September 15, 2004 Here's where I learned HTML many moons ago. It's still a good resource for that, and for checking out unique websites. www.projectcool.com Quote Share this post Link to post Share on other sites More sharing options...
d3bruts1d Posted September 15, 2004 Posted September 15, 2004 Moderation: Topic moved to the Programmer's Corner. Please don not post non-hardware related topics in the hardware forums. On way to do this would be with javascript... example would be like this: Place this in the head tag: <script language="JavaScript"> <!-- function OCC_goToURL() { //v3.0 var i, args=OCC_goToURL.arguments; document.OCC_returnValue = false; for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'"); } //--> </script> Then make the body tag look like this: <body onLoad="OCC_goToURL('parent','http://www.overclockersclub.com');return document.OCC_returnValue"> Keep in mind, this requires Java. If you are doing your site in ASP or PHP, there are ways to do it in those languages... PHP would be something like this at the begning of the code: <?php header("Location: http://www.overclockersclub.com"); ?> Quote Share this post Link to post Share on other sites More sharing options...
Vanquish Posted September 15, 2004 Posted September 15, 2004 Good solutions but it's possible in HTML... <meta http-equiv=Refresh content=1;URL="http://www.overclockersclub.com"> Place it within the HEAD tag and it should work fine! Quote Share this post Link to post Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.