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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
  2. <%@ page import="cn.js.fan.util.*"%>
  3. <jsp:useBean id="strutil" scope="page" class="cn.js.fan.util.StrUtil"/>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7. <title></title>
  8. </head>
  9. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  10. <%
  11. String priv="admin";
  12. if (!privilege.isUserPrivValid(request,priv))
  13. {
  14. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  15. return;
  16. }
  17. %>
  18. <%
  19. String root_code = ParamUtil.get(request, "root_code");
  20. %>
  21. <frameset rows="*,150" cols="*">
  22.   <frame src="dept_top.jsp?root_code=<%=StrUtil.UrlEncode(root_code)%>" name="dirmainFrame">
  23.   <frame src="dept_bottom.jsp" name="dirbottomFrame">
  24. </frameset>
  25. <noframes><body>
  26. </body></noframes>
  27. </html>