I want to cache the home page in the client browser
But after setting the ResponseCache attribute, the response header is set to Cache-Control: no-cache, no-store
After reading Response cache not working in asp.net core project and ResponseCache not working in net core 3.1 I can't fix this
[ResponseCache(Duration = 300)]
public class HomeModel : PageModel
{
public const string PageName = "Home";
public void OnGet()
{
}
}