how do delete all of the user's Temporary Internet Files?
Posted: Tue Apr 10, 2007 6:07 am
how do delete all of the user's Temporary Internet Files?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</head>
<body onLoad="if ('Navigator' == navigator.appName) document.forms[0].reset();" >Code: Select all
</body>
<HEAD>
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
</HEAD>
</html>Nope. But this will validate:andym01480 wrote:which before anyone points out will not validate! But it will work!Code: Select all
</body> <HEAD> <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> </HEAD> </html>
http://support.microsoft.com/kb/222064 is microsoft's solution
Code: Select all
</body>
<!--[if IE]>
<HEAD>
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
</HEAD>
<![endif]-->
</html>Provided the server is logged in as "you."Dale wrote:If you was running a local server (eg; AppServ) on your computer, you could remove YOUR Temp Int Files but no one elses.