How to refresh a page in every 5 mins.

Questions by kalikumar

Showing Answers 1 - 1 of 1 Answers

To simply refresh the web page every five minutes, you can place the "meta http-equiv...." line shown below in the HTML editor of your ASPX page.  Content ="300" means refresh every 300 seconds or five minutes.

   <HEAD>
      <title>WebForm1title>
      <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
      <meta content="C#" name="CODE_LANGUAGE">
      <!--The next line of code will refresh the page every 5 minutes-->
      <meta http-equiv="refresh" content="300">
      <meta content="JavaScript" name="vs_defaultClientScript">
      <meta content="http://schemas.microsoft.com/intellisense/ie5"
           name="vs_targetSchema">
   HEAD>

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions