1
I searched in the forum and did not find a definitive solution, my problem is with regard to browser cache, when I make a change in a javascript file, my client only gets the updated file after cleaning the cache.
We have treated as code below:
<script src='<%=Page.ResolveClientUrl("~/Scripts/MeuJavaScript.js?sid=" + Session.SessionID) %>
Where we concatenate the user session to the file link, however, even with this the file remains outdated.
Thank you.
Have you tried using instead of Session.Sessionid, force some other concatenation just to see if it updates? I don’t know, just put a random number in front and see if you catch up.
– Leandro Simões
https://msdn.microsoft.com/en-us/library/aa478965.aspx
– Lollipop