myinfo_do.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.web.*"
  4. import = "cn.js.fan.util.ErrMsgException"
  5. %>
  6. <%@ page import="java.sql.ResultSet" %>
  7. <%@ page import="java.util.Calendar" %>
  8. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  9. <html>
  10. <head>
  11. <title><lt:Label res="res.label.myinfo" key="myinfo"/> - <%=Global.AppName%></title>
  12. <%@ include file="inc/nocache.jsp"%>
  13. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  14. <link rel="stylesheet" href="common.css" type="text/css">
  15. <style type="text/css">
  16. <!--
  17. body {
  18. margin-top: 0px;
  19. }
  20. -->
  21. </style></head>
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil" />
  24. <jsp:useBean id="userservice" scope="page" class="com.redmoon.forum.person.userservice" />
  25. <%
  26. boolean re = false;
  27. try {
  28. re = userservice.editmyinfo(request,response);
  29. }
  30. catch (ErrMsgException e) {
  31. out.println(StrUtil.Alert_Back(e.getMessage()));
  32. return;
  33. }
  34. if (re)
  35. out.println(StrUtil.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "myinfo.jsp?"));
  36. else
  37. out.println(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
  38. %>
  39. </body>
  40. </html>