exit_oa.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"
  2. import = "cn.js.fan.util.ErrMsgException"
  3. %>
  4. <%@ page import="java.util.Calendar" %>
  5. <html>
  6. <head>
  7. <title>退出</title>
  8. <LINK href="common.css" type=text/css rel=stylesheet>
  9. <%@ include file="inc/nocache.jsp"%>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <link rel="stylesheet" href="../common.css" type="text/css">
  12. </head>
  13. <body bgcolor="#FFFFFF" text="#000000">
  14. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil" />
  15. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege" />
  16. <%
  17. privilege.logout(request, response);
  18. String iskicked = request.getParameter("iskicked");
  19. if (iskicked!=null)
  20. out.print(fchar.p_center("您已被踢出讨论室!"));
  21. else
  22. out.print(fchar.Alert("您已安全退出"));
  23. %>
  24. </body>
  25. <script language=javascript>
  26. <!--
  27. window.top.location.href = "index.jsp";
  28. // window.top.close();
  29. //-->
  30. </script>
  31. </html>