---
title: "How to update data in gridview without manual refresh in asp.net?"  
description: "How to update data in gridview without manual refresh in asp.net?"  
author: "Anonymous User"  
published: 2014-08-19  
updated: 2014-08-19  
canonical: https://www.mindstick.com/forum/2063/how-to-update-data-in-gridview-without-manual-refresh-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# How to update data in gridview without manual refresh in asp.net?

How to [update data](https://www.mindstick.com/forum/380/how-achieve-batch-update-data) in [gridview](https://www.mindstick.com/articles/873/update-delete-edit-gridview-in-asp-dot-net) without [manual](https://www.mindstick.com/blog/11996/complete-manual-guide-for-linksys-extender-setup) [refresh](https://www.mindstick.com/forum/12865/how-to-refresh-dropdownlist-but-keep-old-selected-value-json) in [asp.net](https://www.mindstick.com/articles/934/default-folders-available-inside-the-asp-dot-net-application-folder)?

## Replies

### Reply by Pravesh Singh

Hi Ankita, \

Add the GridView and the Timer control inside an ASP.NET AJAX UpdatePanel as shown below

```
<asp:UpdatePanel ID="UpdatePanel1" runat="server"><ContentTemplate>     <asp:Timer ID="Timer1" runat="server" Interval="60000" ontick="Timer1_Tick">    
</asp:Timer>      <asp:GridView
...>      
</asp:GridView></ContentTemplate></asp:UpdatePanel>protected void Timer1_Tick(object sender, EventArgs e) {    
GridView1.DataBind(); }
```


---

Original Source: https://www.mindstick.com/forum/2063/how-to-update-data-in-gridview-without-manual-refresh-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
