%@ page contentType="text/html; charset=GBK" session="false"%>
SessionOut
<% response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader("Expires",0);
HttpSession session = request.getSession(false);
if (session!= null) {
com.amarsoft.awe.RuntimeContext CurARC = (com.amarsoft.awe.RuntimeContext) session.getAttribute("CurARC");
if (CurARC != null) {com.amarsoft.awe.control.model.ComponentSession compSession = CurARC.getCompSession(); if (compSession !=null) compSession.clear();}
session.invalidate();
}
%>