I have this code:\[code\] HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache); HttpContext.Current.Response.Cache.SetNoServerCaching(); HttpContext.Current.Response.Cache.SetNoStore();\[/code\]have this in a page load event so that even when the user has logged out , the page will not be viewed via a back button of the browser.My question is that, I've read in some articles that the reason for this is that the page will be cached on the browser without those codes so simply clear() or abandon() of session is not enough, so how do you allow css/js to be cacheable if the page is not being cached. (Is it still possible for the css/js to be cached)Or another quesion is, are css/js affected by the code?Sir/Ma'am, your answers would be of great help. Thank you++