Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
is it a time based refresh you want or after an event? – stack72 Oct 12 '10 at 12:19
ideally, whenever a new record is added in the database. It could be timer based too (just to keep things simple) – user279521 Oct 12 '10 at 12:25

2 Answers

up vote 2 down vote accepted

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">
share|improve this answer
that was pretty easy. Thanks. – user279521 Oct 12 '10 at 12:40

You can do it with Timer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.