Hi, Please help, I'm sure this is simple:- there must be an easier way, but I want users to go to an html page that redirects to a cgi process. The reason for this is to use the html page as the redirect source.
The html has the following code segment,
<script>
function redirect() {
document.location = "";
}
</script>
</head>
<body onLoad="javascript:redirect();">
Is there a way that once redirected I can maintain the reference to this page thru the referrer property.
Thanks
The html has the following code segment,
<script>
function redirect() {
document.location = "";
}
</script>
</head>
<body onLoad="javascript:redirect();">
Is there a way that once redirected I can maintain the reference to this page thru the referrer property.
Thanks