Hello,
I am new to alpha. I developed a Help system which is web based. The HTML files/images are on the alpha server. I have a Help button in my alpha application which is linked to my index.htm. We added the htm/html files to the alpha server and I opened the main page, index.htm. The newest help content loaded just fine for me and included the changes I had JUST made. However, a coworker launched the same index.htm page and received the old version, I'm assuming because his browser brought up a cached version.
After that incident, I have included code between the <HEAD> tags in each HTML file to include a file with HTML <head> tags to not cache pages - see below code snippet.
In RefreshNoCache.html, I'm using the following code:
I was told by local IT that in addition to the above code, we need to also set the CacheControlCustom property in IIS to 'no-cache' for pages we don't want cache as that will add an HTTP header for cache-control in the document. I am told by our alpha developer that she is not sure how to do this since we are not using IIS, we are using Alpha APP Server to host the application.
Any ideas? My only other idea is to host the web-based Help HTM/HTML files on our SQL server which IS running IIS and just link to THAT location rather than location on the alpha APP server.
Your help is MUCH appreciated!
I am new to alpha. I developed a Help system which is web based. The HTML files/images are on the alpha server. I have a Help button in my alpha application which is linked to my index.htm. We added the htm/html files to the alpha server and I opened the main page, index.htm. The newest help content loaded just fine for me and included the changes I had JUST made. However, a coworker launched the same index.htm page and received the old version, I'm assuming because his browser brought up a cached version.
After that incident, I have included code between the <HEAD> tags in each HTML file to include a file with HTML <head> tags to not cache pages - see below code snippet.
Code:
<!--#include file="RefreshNoCache.html" -->
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META HTTP-EQUIV="Cache-control" CONTENT="no-cache"> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Expires" CONTENT="-1"> </head> </html>
Any ideas? My only other idea is to host the web-based Help HTM/HTML files on our SQL server which IS running IIS and just link to THAT location rather than location on the alpha APP server.
Your help is MUCH appreciated!
Comment