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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"
  2. import = "java.io.File"
  3. import = "cn.js.fan.util.ErrMsgException"
  4. import = "cn.js.fan.web.SkinUtil"
  5. %>
  6. <%@ page import="java.util.Calendar" %>
  7. <title><%=cn.js.fan.web.Global.AppName%></title>
  8. <%@ include file="../inc/nocache.jsp"%>
  9. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil" />
  10. <jsp:useBean id="userservice" scope="page" class="com.redmoon.forum.person.userservice" />
  11. <%
  12. boolean isSuccess = false;
  13. try {
  14. isSuccess = userservice.AddFriend(request);
  15. }
  16. catch (ErrMsgException e) {
  17. out.println(StrUtil.Alert_Back(e.getMessage()));
  18. return;
  19. }
  20. String msg;
  21. if (isSuccess)
  22. msg = SkinUtil.LoadString(request, "info_op_success"); // "加为好友成功!";
  23. else
  24. msg = SkinUtil.LoadString(request, "info_op_fail"); // "加为好友失败!";
  25. out.println(StrUtil.Alert_Back(msg));
  26. %>