Stopping ASP Pages from being cached.
I know that you are supposed to set the the Response.Expires option to 0 if you want your ASP page to never be cached. But, I am still having problems with my pages being cached if the Browser is not set to check for newer version every time I visit the page. If it is set to Automatic or every time the browser starts, the pages still get cached.
I have a single include file that I #include in all of my scripts. I call it global.asp. It in turn #includes all of my library files that my scripts need. So in my situation, all of my pages are dynamic and are read from the database, I simply placed the Response.Expires = 0 in the top of my global.asp file that I then include in all of my scripts. But this doesn't seem to be working all of the time. Am I missing something? Any help is appreciated!
RaeRae1616