我正在使用ASP.NET构建一个网站。我需要根据每分钟的数据库更改自动刷新我的网页。我一直在阅读有关System.Timers的内容,但不确定如何在MVC控制器上实现它。 这是我的示例代码。
public class HomeController : Controller
{
public ActionResult Index()
{
//write the code to refresh page every 1 min
var appSettings = ConfigurationManager.AppSettings;
MySQL msql = new MySQL();
List<string> status = msql.SelectList("Select * from table");
//query database
return View();
}
}