views:

31

answers:

2

I am using ajax UpdatePanel in my asp.net page, and I wanted to know can I auto refresh data in my gridview control?

+2  A: 

You can do it with Timer.

Svisstack
+2  A: 

Have a look at this page: auto-postback-or-refresh-page-for-every-defined-time-interval

Using a timer is the simpliest way.

<asp:Timer id="Timer1" runat="server" Interval="2000">
Tim Schmelter
that was pretty easy. Thanks.
user279521