userpopedomManage.jsp~31~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" import="officeol.mc.tools.*" %>
  2. <%request.setCharacterEncoding("GBK"); %>
  3. <html>
  4. <head>
  5. <title>
  6. 天津市河东区经济贸易委员会内部办公网
  7. </title>
  8. </head>
  9. <body bgcolor="#ffffff">
  10. <h4>
  11. 用户权限设置
  12. </h4>
  13. <br /><br />
  14. <%
  15. String message = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  16. out.print(message);
  17. String ud = (String)session.getAttribute("UD");
  18. String udid = (String)session.getAttribute("UDID");
  19. String un = (String)session.getAttribute("UN");
  20. String uid = (String)session.getAttribute("UID");
  21. String pp = (String)session.getAttribute("POPE");
  22. String login = (String)session.getAttribute("LOGIN");
  23. if(login!=null&&login.equals("OK")){
  24. %>
  25. <a href="upadd.jsp">用户权限添加</a>
  26. <a href="upMod.jsp">用户权限修改</a>
  27. <%}else{
  28.     response.sendRedirect("userlogin.jsp");
  29.   }
  30.  %>
  31. </body>
  32. </html>