0
Posted on 12:55 PM by prajeesh and filed under , ,
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
Shout it kick it on DotNetKicks.com
0
Posted on 11:01 AM by prajeesh and filed under
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");

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. Shout it kick it on DotNetKicks.com