This is a discussion on Refreshing page within the ASP and ASP.NET Programming forums, part of the Web Development category; How can we refresh the page automatically for a specified times or a particular time interval ? How can we stop ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| How can we refresh the page automatically for a specified times or a particular time interval ? How can we stop the page being refreshed? Please send me code if possible.
__________________ --Kirubhaa. Born to win-- |
| Sponsored Links |
| |||
| Hi Kirubha, To refresh the page after a certain period of time, we can use the meta tag refresh. Here is how to use the tag (The tag should be added in the Head section of the page). <meta http-equiv="refresh" content="120"> The content attribute defines the time in second after which the page should refresh. So in the example the page would refresh after every 2 minutes.
__________________ S.Balasubramanian Nothing is impossible |
| |||
| Hi Kirubha, To redirect the page to another page after certain time we can modify Meta tag like this. <meta http-equiv="refresh" content="2;url=http://www.Discussweb.com">
__________________ S.Balasubramanian Nothing is impossible |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Stop the Refreshing | Kirubhananth | HTML, CSS and Javascript Coding Techniques | 2 | 03-19-2008 09:42 PM |
| 'Page' ia an unambiguous reference between 'System.Web.UI.Page' and 'Project1.Page' | poornima | ASP and ASP.NET Programming | 1 | 03-05-2008 03:12 AM |
| detect hour of the day and selects a link, they go to either a day page or night page | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 01-11-2008 02:09 AM |
| page refreshing | nssukumar | Flash Actionscript Programming | 1 | 07-26-2007 12:13 AM |
| ASP.NET FAQ - maintain page scroll position after a page postback? | Archer | ASP and ASP.NET Programming | 1 | 07-24-2007 12:40 AM |