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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="cn.js.fan.util.*"%>
  3. <%@ page import="com.redmoon.blog.*"%>
  4. <%@ page import="cn.js.fan.web.*"%>
  5. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
  7. <%
  8. String str = SkinUtil.LoadString(request,"res.label.blog.user.frame", "title");
  9. str = StrUtil.format(str, new Object[] {Global.AppName});
  10. %>
  11. <HTML><HEAD><TITLE><%=str%></TITLE>
  12. <META http-equiv=Content-Type content="text/html; charset=utf-8">
  13. <META content="MSHTML 6.00.3790.259" name=GENERATOR></HEAD>
  14. <jsp:useBean id="strutil" scope="page" class="cn.js.fan.util.StrUtil"/>
  15. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  16. <%
  17. if (!privilege.isUserLogin(request))
  18. {
  19. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "err_not_login")));
  20. return;
  21. }
  22. String userName = ParamUtil.get(request, "userName");
  23. if (userName.equals("")) {
  24. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.label.blog.user.userconfig", "not_name_frame")));
  25. return;
  26. }
  27. UserConfigDb as = new UserConfigDb();
  28. as = as.getUserConfigDb(userName);
  29. if (!as.isLoaded())
  30. {
  31. out.print(SkinUtil.makeErrMsg(request, SkinUtil.LoadString(request,"res.label.blog.user.userconfig", "activate_blog_fail")));
  32. return;
  33. }
  34. String user = privilege.getUser(request);
  35. if (!userName.equals(user)) {
  36. if (!privilege.isMasterLogin(request)) {
  37. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, SkinUtil.PVG_INVALID)));
  38. return;
  39. }
  40. }
  41. %>
  42. <FRAMESET border=0 
  43. frameSpacing=0 rows=49,* frameBorder=NO cols=*><FRAME name=topFrame 
  44. src="top.jsp?userName=<%=StrUtil.UrlEncode(userName)%>" noResize scrolling=no><FRAMESET 
  45. border=0 frameSpacing=0 rows=* frameBorder=NO cols=198,*><FRAME name=leftFrame 
  46. src="menu.jsp" 
  47. noResize scrolling=yes><FRAME name=mainFrame 
  48. src="listtopic.jsp?userName=<%=StrUtil.UrlEncode(userName)%>" 
  49. scrolling=yes></FRAMESET></FRAMESET><noframes></noframes></HTML>