LottaLava
01-14-2004, 08:00 PM
Hello dudes, how can i make IE donīt record anything from a web-page ( icookies doesnīt matter, but other information like: data, variables, context, etc i donīt want IE record, even in memory ), any idea?
Regards,
LottaLava
Willy Duitt
01-14-2004, 08:23 PM
How about this: :D
<script type="text/javascript">
if(navigator.appName == "Microsoft Internet Explorer") {
location.replace(history.go(-1));
}
</script>
</HEAD>
.....Willy
glenngv
01-15-2004, 08:47 AM
What's really the end result you want accomplished with this? If you would tell us your ultimate reason of wanting to do this, then maybe we can offer *real* solutions, not workarounds.
LottaLava
01-16-2004, 05:02 PM
Hey dudes, i have the answer!:D
Put the following code in your page and you will disable browser cacheing.
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="expired" CONTENT="01-Mar-94 00:00:01 GMT">
Have fun,
LottaLava