The easiest way:
<Head> <meta equiv="refresh" content="5"> </Head>
or use a timer to refresh a web page every five minutes, for example: control the drag and drop timer in form.aspx and in the form load add the code as shown below
<asp:Timer ID="Timer1" runat="server" Interval="6000" ontick="Timer1_Tick" />
Form loading
public void DoMagic() { } protected void Timer1_Tick(object sender, EventArgs e) { DoMagic(); Label1.Text = ""; }
source share