<%@ page buffer="true" import="kgweb.bean.UserBean;kgweb.web.Frame;kgweb.comm.ExeEvent"%><%try { //读取返回的url String rtpage = request.getParameter("page", "US-ASCII"); if (rtpage == null || rtpage.equals("")) { rtpage = "/"; } //执行logout UserBean actionBean = new UserBean(); int actionId = actionBean.logoutAction(session); if (actionId < 0) { //发生了错误 ExeEvent exeEvent = new ExeEvent(session, response, "/account/servlet/logout.htm$"+$ke$sourceLineNumber, rtpage, actionBean); //根据执行结果进行跳转 exeEvent.action(actionId); // return; } //没有发生错误则继续下去 if (true) { response.sendRedirect(rtpage); return; }%><%@include file="../../comm/end.txt"%>