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.