我在控制器中编写了方法,例如,
public ContentResult GetServerTime()
{
return Content(DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString());
}
我需要设置返回值的时间延迟可以吗?我是 MVC 的新手。
我在控制器中编写了方法,例如,
public ContentResult GetServerTime()
{
return Content(DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString());
}
我需要设置返回值的时间延迟可以吗?我是 MVC 的新手。