HomeASP.NETHow to Refresh Webpage every few Mins using HTML Meta Tag ?

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 read connection string from web.config file in ASP.NET by using the ConfigurationManager class in case you want to...
When you deploy your ASP.NET Web Application on Windows Server running IIS , there are times that you might receive...
This post will explain how to resolve the error “Handler “aspNetCore” has a bad module “AspNetCoreModuleV2” in its module list”...