I am using ajax UpdatePanel in my as开发者_Go百科p.net page, and I wanted to know can I auto refresh data in my gridview control?
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">
You can do it with Timer
.
精彩评论