A miscellany of web tech and cyber life stuff.
<p title="Line 1... & 2.">Put your mouse over me.</p>
Put your mouse over me.
<html><form><input type crash></form></html>
<link rel="shortcut icon" href="/DirectoryPath/logo.ico">.<meta http-equiv="refresh" content="0;URL=http://www.google.com/">
<script language="Javascript" type="text/javascript">
<!--
//<![CDATA[
window.location.href="http://www.google.com/"
//]]>
-->
</script>
The following code will delay before redirecting.
<html><head>
<script language="javascript" type="text/javascript"><!--
function redirect () { setTimeout("go_now()",10000); }
function go_now () { window.location.href = "http://www.google.com/"; }
//--></script>
</head>
<body onload="redirect()">
<p>This page will be redirected in 10 seconds</p>
<p>Hit the 'ESC' key or click <a href="javascript:history.back()">BACK</a> to cancel the redirect.</p>
</body></html>
The redirecting page with the following code will not show in the client's history of sites visited.
<script language="javascript" type="text/javascript"><!--
location.replace("http://www.google.com");
--></script>
<?php
header("Location: http://www.google.com/");
?>
Response.Redirect("http://www.google.com/")
Server.Transfer("sameServer.asp", True)
2007-07-23 22:14:46Z