---
title: "How do I create an ASPX page that periodically refreshes itself?"  
description: "How do I create an ASPX page that periodically refreshes itself?"  
author: "Manasavi Rajpoot"  
published: 2010-11-16  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/243/how-do-i-create-an-aspx-page-that-periodically-refreshes-itself  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# How do I create an ASPX page that periodically refreshes itself?

The following `META` tag can be used as a trigger to automatically refresh the page every n seconds:

```
<meta http-equiv="Refresh" content="nn">
```

## Answers

### Answer by Manasavi Rajpoot

The following `META` tag can be used as a trigger to automatically refresh the page every n seconds:

```
<meta http-equiv="Refresh" content="nn">
```


---

Original Source: https://www.mindstick.com/interview/243/how-do-i-create-an-aspx-page-that-periodically-refreshes-itself

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
