I am using Frontpage 2000 and need to automatically redirect from one page to another. Both pages are in the same site. I have tried a few different ways some work on my computer but none have worked from the server hosting my site. I have already tried the following:
this.location = "kids/main.htm"
this.location.href = "kids/main.htm"
window.location ="kids/main.htm"
I even tried using:
<form name="frmRD" action="kids/main.htm">
<script language="javascript">
setTimeout("frmRD.submit()",1000)
</script>
But they all come up with page not found. Anyone have any ideas as to how i can make this happen?
this.location = "kids/main.htm"
this.location.href = "kids/main.htm"
window.location ="kids/main.htm"
I even tried using:
<form name="frmRD" action="kids/main.htm">
<script language="javascript">
setTimeout("frmRD.submit()",1000)
</script>
But they all come up with page not found. Anyone have any ideas as to how i can make this happen?