User1572535980 posted
I have this code
In startup
app.UseResponseCaching();
Controller, which I would like to Cache. On each request the program run the code in the controller?
[ResponseCache(Duration = 86400)]
public ActionResult TestForm()
{
string url = Request.GetDisplayUrl();
return View();
}