right_adminchangerpassword.jsp~1~

来自「jsp技术 基于struts框架的新闻发布系统」· JSP~1~ 代码 · 共 30 行

JSP~1~
30
字号
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>更改管理员密码</title>

</head>
<%String adminpassword=(String)request.getAttribute("adminpassword");%>
<%=System.out.print(adminpassword)%>
<body bgcolor="#ffffc0">
<div align="center" s>
  <p>更改管理员密码</p>
  <p>&nbsp;</p>
  <form name="form1" method="post" action="">
    <table width="425" border="3" cellspacing="3" cellpadding="3">
	   <input name="adminpassword" type="hidden" value="adminpassword">
      <tr>
        <td width="163">请输入原来的密码:</td>
        <td width="231"><input type="password" name="textfield"></td>
      </tr>
    </table>
    <input type="submit" name="Submit2" value="提交">
	&nbsp;&nbsp;&nbsp;
    <input type="reset" name="Submit" value="重置">
  </form>
 
</div>
<h1>&nbsp;</h1>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?