Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
is it possible to load a webpage after every 1 hour or five minutes if I run scheduler on the back-end of asp.NET or normal html page?

Basically I want after every certain moment the page will be reloaded autmatically?

C#
<html>
    <head>
        <title>TestProgram </title>
      </head>
        <body>
					<P> Please follow this table:</P>
            <div id="testDiv">
          <table id="testTable1" border='1px' cellpadding='1' cellspacing='1' bgcolor='lightyellow' style='font-family:Garamond; font-size:medium'>
		<tr >
            <th>ID  </th>
            <th>NAME</th>
	    <th>CITY</th>
            <th>TestColum</th>
  
	   </tr>
        <tr >
          <td>111</td>
          <td >Devesh</td>
          <td >Ghaziabad</td>
          <td>test</td>
       </tr>
      
      
 
   </table>

</body>
</html>  


This is a sample.
But my page has a dynamic table. Different time my table will show different data.

Then I want to take the html content every time after completing the load. Is it possible to load a page on the basis of a scheduler ? if possible please give me a suggestion.
Posted

 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900