How to Refresh Webpage every few Mins using HTML Meta Tag ?

One of the common ways to refresh webpage every few mins is by using JavaScript or HTML Meta tag.

For example , assume that you want to refresh the webpage every 1 minute . You can place the metatag in the head tag with the attributes http-equiv=”refresh” and the content attribute to 60.

How to Refresh Webpage every few Mins using HTML Meta Tag ?

<html>
  <head>

    <meta http-equiv="refresh" content="60">

  </head>

  <body>

  </body>

</html>

Note that the meta tag for refreshing the webpage is a deprecated feature as per w3c standards but the solution works on most of the Web Browsers.

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

You can pass an array of integer to an ASP.NET Web Web API REST service by setting the [FromUri] attribute...
This post will provide the list of some of the top ASP.NET based Content Management Systems (CMS) that you may...
Well i have been wandering around here and ther for quite a few days in understanding how to dynamically create...