userinfo_editphoto.jsp
资源名称:JSP-OA.rar [点击查看]
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ page contentType="text/html;charset=utf-8"%>
- <%@ page import="java.util.*"%>
- <%@ page import="cn.js.fan.util.*"%>
- <%@ page import="cn.js.fan.db.*"%>
- <%@ page import="cn.js.fan.web.*"%>
- <%@ page import="com.redmoon.forum.plugin.sweet.*"%>
- <%@ page import="com.redmoon.forum.person.*"%>
- <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
- <%
- SweetUserInfoMgr suim = new SweetUserInfoMgr();
- boolean re = false;
- try {
- re = suim.editPhoto(application, request);
- if (re) {
- out.print(StrUtil.Alert_Redirect("编辑照片成功!", "userinfo_edit.jsp?boardcode=" + StrUtil.UrlEncode(suim.getBoardCode()) + "&userName=" + StrUtil.UrlEncode(suim.getUserName())));
- }
- else
- out.print(StrUtil.Alert_Back("编辑照片失败!"));
- }
- catch (ErrMsgException e) {
- out.print(StrUtil.Alert_Back(e.getMessage()));
- }
- %>