views:

26

answers:

1

In my web application (ASP.NET MVC), I need to do a certain function (refresh a table with data) every sunday at 12:00 am.

How can I do that?

We meet it everywhere. For example Google Adsense's stats update only every hour or so. How can you set up this interval update?

+2  A: 

You could set up a scheduled task on the server to call a web-page that will update the table.

Go read this article on MSDN.

Dan McGrath