Ignore cache in IE when working through Visual Studio

I often use IE as my development browser due to its tight integration with Visual Studio. However, every time I start a web project from Visual Studio, I have to open IE dev tools (with F12) and reload the page to avoid using cached versions of my code.

Is there a way to tell Visual Studio to open IE with dev tools already open? Or open IE with an already ignored cache?

+4
source share
1 answer

I use Internet Explorer only when debugging using Visual Studio. I changed my settings so that cookies and cache are cleared every time I exit IE, so I have no problem debugging. Obviously, this is not very practical if you really use IE for anything else, but I use Chrome exclusively for all other purposes, so this solution works well for me.

  • Open Internet Options and select the Delete browsing history on exit check box.

enter image description here

  1. " ", ... "" --,

enter image description here

  1. - ""

enter image description here

cookie Internet Explorer ( )

. Internet Explorer 11. .

--- EDIT ---

IE , , , .

- -

enter image description here

- " ":

enter image description here

IE , , - , .

, , , , . , , - , .

, :

<script src="/scripts/application.js?v1.2.85"></script>

, , ?v... . , . , , HTML-. JavaScript, StyleSheets.

, , , .

+8

Source: https://habr.com/ru/post/1570008/


All Articles