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:
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
2010-10-12 12:33:57
that was pretty easy. Thanks.
user279521
2010-10-12 12:40:40