I have a angular 1.x SPA app built with ASP Web API hosted in Azure as a Web App. When I deploy new code browsers such as Chrome (not edge or IE) fail to get the new code based on If-modified-since or ETAG. The current workaround is to have users do a CTRL + F5 to force a download. There are some differences in the request headers between Edge and Chrome that may explain this but I am not very familiar with the cache control mechanisms within HTTP.
My main question is this an expected behavior and I need to deliberately detect this in client side code and force a refresh or is this something IIS is expected to handle by default? Secondarily is this something I can solve through changes to web.config?
Edge
- Accept: application/javascript, /; q=0.8
- Accept-Encoding: gzip, deflate
- Accept-Language: en-US
- Connection: Keep-Alive
- Cookie: ai_user=T9jXc|2016-08-08T05:44:23.776Z; ai_session=2GcvV|1470765398272|1470765399564
- Host: app.somehost.com
- If-Modified-Since: Mon, 08 Aug 2016 16:34:46 GMT
- If-None-Match: "0172c692f1d11:0"
- Referer: https://app.somehost.com/
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393
Chrome
- Accept:/
- Accept-Encoding:gzip, deflate, sdch, br
- Accept-Language:en-US,en;q=0.8
- Cache-Control:max-age=0
- Connection:keep-alive
- Cookie:ai_user=WXgAN|2016-08-09T16:28:50.251Z; ai_session=nV7TD|1470765376324|1470765376960
- Host:app.somehost.com
- If-Modified-Since:Mon, 08 Aug 2016 16:34:46 GMT
- If-None-Match:"0172c692f1d11:0"
- Referer:https://app.somehost.com/
- User-Agent:Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36