0
In some websites you may seen animating or scrolling page titles, here is the trick to do this, just place below code between your page's <head> and </head> tags
- <script language="javascript"> var msg = " This is a test animating title ";
- var pos = 0;var spacer = " ....";
- var time_length = 200;
- function RunTitle()
- {
- document.title = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos); pos++;
- if (pos > msg.length) pos=0;
- window.setTimeout("RunTitle()",time_length);
- }RunTitle();
- </script>
0
Here your page Default.aspx will be refreshed after 60 seconds, if you want to redirect to another page after a few seconds, replace the page 'Default.aspx' with the page you want to be redirected.
Posted on 11:01 AM by prajeesh and filed under
ASP.net
Some situations such as a freequently updating page you may need to refresh your page automatically, here is the code to achieve this.- Response.AppendHeader("Refresh", "60; URL=Default.aspx");
Response.AppendHeader("Refresh", "60; URL=Default.aspx");
Here your page Default.aspx will be refreshed after 60 seconds, if you want to redirect to another page after a few seconds, replace the page 'Default.aspx' with the page you want to be redirected.