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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"
  2. import = "cn.js.fan.util.*"
  3. %><jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege" /><%
  4. String fromWhere = ParamUtil.get(request, "fromWhere");
  5. String toWhere = ParamUtil.get(request, "toWhere");
  6. String action = ParamUtil.get(request, "action");
  7. String rootpath = request.getContextPath();
  8. String rootid = ParamUtil.get(request, "rootid");
  9. try {
  10. if (privilege.jump(request, response, fromWhere, toWhere)) {
  11. if (toWhere.equals("forum")) {
  12. if (action.equals("usercenter"))
  13. response.sendRedirect(rootpath + "/usercenter.jsp");
  14. else {
  15. if (rootid.equals(""))
  16. response.sendRedirect(rootpath + "/forum/index.jsp");
  17. else
  18. response.sendRedirect(rootpath + "/forum/showtopic.jsp?rootid=" + rootid);
  19. }
  20. }
  21. if (toWhere.equals("blog")) {
  22. if (rootid.equals(""))
  23. response.sendRedirect(rootpath + "/blog/index.jsp");
  24. else
  25. response.sendRedirect(rootpath + "/forum/showblog.jsp?rootid=" + rootid);
  26. }
  27. if (toWhere.equals("oa"))
  28. response.sendRedirect(rootpath + "/oa.jsp");
  29. }
  30. }
  31. catch (ErrMsgException e) {
  32. out.print(StrUtil.Alert(e.getMessage()));
  33. }
  34. %>