Search code examples
htmlcsswebmatrix

WebMatrix shows old page still


I am using Microsoft webmatrix to do some HTML coding. But even though I changed contents of my HTML, the browser is still showing my old page. Please see screenshots. I even tried restarting webmatrix, but still old page is shown.

enter image description here

Still shows old page: enter image description here

Why? I clicked save all too.


Solution

  • The content of the page is being cached by your browser. If you want to prevent this behaviour add the following to your <head> section:

    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="expires" content="-1">