I have a JSP which ensures that the HTTP response contains headers to instruct browsers not to cache. I accessed that page in Firefox with Firebug open and could see in Firebug under 'Net' - 'HTML' - 'Headers' 'Response Headers'
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Content-Type text/html;charset=ISO-8859-1
Date Sun, 26 Oct 2014 22:47:28 GMT
Expires Sat, 6 May 1995 12:00:00 GMT
Pragma no-cache
Transfer-Encoding chunked
Is this information enough to say the page is not cached or is there any other way to double check whether a page has been cached or not in browser?