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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <%@ page import="cn.js.fan.db.*"%>
  5. <%@ page import="cn.js.fan.web.*"%>
  6. <%@ page import="com.redmoon.forum.plugin.sweet.*"%>
  7. <%@ page import="com.redmoon.forum.person.*"%>
  8. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  9. <%
  10. SweetUserInfoMgr suim = new SweetUserInfoMgr();
  11. boolean re = false;
  12. try {
  13. re = suim.editPhoto(application, request);
  14. if (re) {
  15. out.print(StrUtil.Alert_Redirect("编辑照片成功!", "userinfo_edit.jsp?boardcode=" + StrUtil.UrlEncode(suim.getBoardCode()) + "&userName=" + StrUtil.UrlEncode(suim.getUserName())));
  16. }
  17. else
  18. out.print(StrUtil.Alert_Back("编辑照片失败!"));
  19. }
  20. catch (ErrMsgException e) {
  21. out.print(StrUtil.Alert_Back(e.getMessage()));
  22. }
  23. %>