79721521

Date: 2025-07-31 15:32:25
Score: 1.5
Natty:
Report link

You can also add the headers to the web.config file:

<configuration>
    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <add name="Cache-Control" value="no-cache"/>
            </customHeaders>
        </httpProtocol>
    </system.webServer>
</configuration>

This will apply to every request.

Thanks to https://stackoverflow.com/a/34393611/159347 for providing this answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: schmiddy98