adminSelf.jsp
上传用户:bjjsss
上传日期:2018-06-10
资源大小:4236k
文件大小:2k
源码类别:

SilverLight

开发平台:

Java

  1. <%@ page contentType="text/html;charset=UTF-8" language="java"%>
  2. <%@ page import="cn.com.blogonline.*"%>
  3. <%@ page import="java.util.*"%>
  4. <%
  5. Blog blog = (Blog)session.getAttribute(Constants.LOGIN_USER_KEY);
  6. Integer modiFlag = (Integer)session.getAttribute(Constants.MODIFY_OK_KEY);
  7. if (modiFlag!=null){
  8. out.println("修改成功!");
  9. session.removeAttribute(Constants.MODIFY_OK_KEY);
  10. }
  11. %>
  12. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  13. <html>
  14. <head>
  15. <title>博客个人资料</title>
  16. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  17. <link rel="StyleSheet" type="text/css" href="images/mystyle.css">
  18. </head>
  19. <body>
  20. <table border="1" width="95%" bordercolor="#FF9900">
  21. <tr>
  22. <td width="100%">
  23. <p align="left">
  24. <b><font color="#FF0000">博客个人资料</font></b>
  25. </p>
  26. </td>
  27. </tr>
  28. <tr>
  29. <td width="100%">
  30. <table cellspacing="2" cellpadding="0" width="98%" align="center" border="0">
  31. <tbody>
  32. <form method="post" action="saveSelf">
  33. <tr>
  34. <td class="redfont" nowrap width="10%" height="30">
  35. 博客标题
  36. </td>
  37. <td>
  38. <input class="text" size="26" name="subject" value="<%=blog.getSubject()%>">
  39. </td>
  40. </tr>
  41. <tr>
  42. <td class="redfont" nowrap width="10%" height="30">
  43. 博客密码
  44. </td>
  45. <td>
  46. <input class="text" size="20" name="psw" value="<%=blog.getPassword()%>">
  47. </td>
  48. </tr>
  49. <tr>
  50. <td class="redfont" nowrap width="10%" height="30">
  51. 确认密码
  52. </td>
  53. <td>
  54. <input class="text" size="20" name="psw2" value="<%=blog.getPassword()%>">
  55. </td>
  56. </tr>
  57. <tr>
  58. <td class="redfont" height="30">
  59. 博客邮件地址
  60. </td>
  61. <td width="90%">
  62. <input class="text" size="20" name="email" value="<%=blog.getEmail()%>">
  63. </td>
  64. </tr>
  65. </tbody>
  66. </table>
  67. </td>
  68. </tr>
  69. <tr>
  70. <td width="100%" align="center">
  71. <input class="button-submit" id="save" type="submit" value="确认修改" name="save">
  72. &nbsp;
  73. </td>
  74. </tr>
  75. </table>
  76. </form>
  77. </body>
  78. </html>