adminSelf.jsp
资源名称:JSPonline.rar [点击查看]
上传用户:bjjsss
上传日期:2018-06-10
资源大小:4236k
文件大小:2k
源码类别:
SilverLight
开发平台:
Java
- <%@ page contentType="text/html;charset=UTF-8" language="java"%>
- <%@ page import="cn.com.blogonline.*"%>
- <%@ page import="java.util.*"%>
- <%
- Blog blog = (Blog)session.getAttribute(Constants.LOGIN_USER_KEY);
- Integer modiFlag = (Integer)session.getAttribute(Constants.MODIFY_OK_KEY);
- if (modiFlag!=null){
- out.println("修改成功!");
- session.removeAttribute(Constants.MODIFY_OK_KEY);
- }
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <title>博客个人资料</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <link rel="StyleSheet" type="text/css" href="images/mystyle.css">
- </head>
- <body>
- <table border="1" width="95%" bordercolor="#FF9900">
- <tr>
- <td width="100%">
- <p align="left">
- <b><font color="#FF0000">博客个人资料</font></b>
- </p>
- </td>
- </tr>
- <tr>
- <td width="100%">
- <table cellspacing="2" cellpadding="0" width="98%" align="center" border="0">
- <tbody>
- <form method="post" action="saveSelf">
- <tr>
- <td class="redfont" nowrap width="10%" height="30">
- 博客标题
- </td>
- <td>
- <input class="text" size="26" name="subject" value="<%=blog.getSubject()%>">
- </td>
- </tr>
- <tr>
- <td class="redfont" nowrap width="10%" height="30">
- 博客密码
- </td>
- <td>
- <input class="text" size="20" name="psw" value="<%=blog.getPassword()%>">
- </td>
- </tr>
- <tr>
- <td class="redfont" nowrap width="10%" height="30">
- 确认密码
- </td>
- <td>
- <input class="text" size="20" name="psw2" value="<%=blog.getPassword()%>">
- </td>
- </tr>
- <tr>
- <td class="redfont" height="30">
- 博客邮件地址
- </td>
- <td width="90%">
- <input class="text" size="20" name="email" value="<%=blog.getEmail()%>">
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- <tr>
- <td width="100%" align="center">
- <input class="button-submit" id="save" type="submit" value="确认修改" name="save">
-
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>