Disable caching in safari

Beatkeymmer

New Member
I have used the below code for disable the caching.But Safari still showing the site URL in the cache details. Any idea?c#\[code\] protected void Page_Load(object sender, EventArgs e) { Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetNoStore(); }\[/code\]HTMLmeta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" >meta http-equiv="Pragma" content="no-cache" />meta http-equiv="Expires" content="0" />
 
Back
Top