I am trying to use the following to get a web page to auto refresh every 3
secs and go to the end of the web page. Refresh works but it will not jump
to the name anchor. Any help?

<HTML>
<HEAD>
<META http-equiv="REFRESH" content="3;'what.htm#TheEnd'">
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">
<CENTER>
<TABLE width="600">
<TR>
<TD vAlign=top align=left>
Tons o content
</TD>
</TR>
</TABLE>
</CENTER>
<A name="TheEnd">You Are At The End</A>
</BODY>
</HTML>

Re: Having Web Page Refresh and go to end of page by Aaron

Aaron
Thu Jul 07 09:45:52 CDT 2005

Your syntax is all botched up.
<META http-equiv="REFRESH" content="3;url=what.htm#TheEnd">


> <META http-equiv="REFRESH" content="3;'what.htm#TheEnd'">



Re: Having Web Page Refresh and go to end of page by miTch

miTch
Thu Jul 07 10:01:08 CDT 2005

Thanks for you help. This does refresh the page one time. After that it
stops. I am looking for a continual refresh. Any help?

Kevin

"Aaron Bertrand [SQL Server MVP]" <ten.xoc@dnartreb.noraa> wrote in message
news:%23CgSGKwgFHA.3000@tk2msftngp13.phx.gbl...
> Your syntax is all botched up.
> <META http-equiv="REFRESH" content="3;url=what.htm#TheEnd">
>
>
> > <META http-equiv="REFRESH" content="3;'what.htm#TheEnd'">
>
>



Re: Having Web Page Refresh and go to end of page by Aaron

Aaron
Thu Jul 07 10:05:16 CDT 2005

Sure, use JavaScript, in which case you can do it all without worrying about
the <meta> tag.

<script>
var a = window.setTimeout('window.location.reload();',3000);
window.location.hash = '#TheEnd';
</script>




> Thanks for you help. This does refresh the page one time. After that it
> stops. I am looking for a continual refresh. Any help?



Re: Having Web Page Refresh and go to end of page by miTch

miTch
Thu Jul 07 10:08:15 CDT 2005

Ah, didn't think of that. Thanks again for the help!

"Aaron Bertrand [SQL Server MVP]" <ten.xoc@dnartreb.noraa> wrote in message
news:OdaL8UwgFHA.1148@TK2MSFTNGP12.phx.gbl...
> Sure, use JavaScript, in which case you can do it all without worrying
about
> the <meta> tag.
>
> <script>
> var a = window.setTimeout('window.location.reload();',3000);
> window.location.hash = '#TheEnd';
> </script>
>