Atozed Forums
Security Questions - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: Security Questions (/thread-91.html)



Security Questions - joel - 04-10-2018

I have 2 security questions for iw14.

1.  Can someone tell me where/how intraweb uses an http post and/or http get request?   

2.  How can I limit the data that the browser caches on the client computer?

Thanks


RE: Security Questions - mhammady - 04-15-2018

(04-10-2018, 11:48 AM)joel Wrote: 2.  How can I limit the data that the browser caches on the client computer?



Hi Joel,

Only for Q2, I think this is an HTML metadata request. You can try something like:

Quote:
Code:
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="01 Jan 2018:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />


I got this from https://stackoverflow.com/questions/1341089/using-meta-tags-to-turn-off-caching-in-all-browsers and it is better to read the whole thread.


Mohamed