79147121

Date: 2024-11-01 06:33:14
Score: 0.5
Natty:
Report link

Add these lines of code in the "Global.asax.cs" file i.e.

protected void Application_BeginRequest()
{
    Response.Cache.SetCacheability(HttpCacheability.ServerAndNoCache);
    Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
    Response.Cache.SetNoStore();
} 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: asmak9