简体   繁体   中英

Disabling Browser Caching for a Web Page, Not Working for IE

I wanted to disable the Browser Cache for a page. After referring some article about Browser cache disabling concept I found a solution to achieve it.

Here is the code I using:

<META HTTP-EQUIV="Pragma" CONTENT="no-cache">

I included this command between HEAD tag.

But this is not working in IE. Could someone help to rectify it. How can I make it work, any ideas will be helpful.

Thank you...!!

<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM