Link to home
Start Free TrialLog in
Avatar of ramsharma23
ramsharma23

asked on

cache issue in websphere

how to clear the cachememory in websphere and also in browserside currently im using script like

<%

// This is to prevent Caching on the browser and proxy

response.setHeader("Cache-Control","no-cache"); //HTTP 1.1

response.setHeader("Pragma","no-cache"); //HTTP 1.0

response.setDateHeader ("Expires", -1); //prevents caching at the proxy server

%>

<head>
    <META HTTP-EQUIV="Content-Type"  CONTENT="text/html; charset=iso-8859-15" />
    <META HTTP-EQUIV="Expires"       CONTENT="-1">
    <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
    <META HTTP-EQUIV="Pragma"        CONTENT="no-cache">
>/head>
ASKER CERTIFIED SOLUTION
Avatar of Dain_Anderson
Dain_Anderson

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial