I’ve tried all of the meta tag variations here and it still loads the old data on the form, unless I put it in edit mode (which was my workaround)
Subject: Does anyone else have trouble with forms disobeying meta tags to not cache the docs?
meta tags are very very buggu with browser when it comes to cache.
Use the new R6 feature :
either this code in the HTML Head (or whereever computation occures :
@SetHTTPHeader(“Expires”;@Now);
@SetHTTPHeader(“Cache-control”;“No-cache”);
Or server HTTP header rules via names.nsf to achieve same goal : add Cache control http header to response that the browser will obey far better than meta tags
Subject: RE: Does anyone else have trouble with forms disobeying meta tags to not cache the docs?
You may also want to try:@SetHTTPHeader(“Cache-control”;“No-store”);
to keep proxy servers from caching it. If the No-cache option works for you, I would stick with it though.