updatePWD.jsp
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page language="java" pageEncoding="GBK"%>
  2. <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
  3. <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
  4. <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
  5. <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8.   <head>
  9. <style type="text/css">
  10. <!--
  11. .STYLE1 {
  12. font-family: "新宋体";
  13. font-size: 16px;
  14. }
  15. -->
  16. </style>
  17. <script>
  18. function checkform(){
  19. var newpwd = document.getElementById("newpwd");
  20. var checkpwd=document.getElementById("checkpwd");
  21. if(newpwd.value.length<=0||checkpwd.value.length<=0){
  22. alert('密码不能为空!');
  23. return false;
  24. }
  25. if(newpwd.value!=checkpwd.value){
  26. alert('填入的密码不一致!');
  27. return false;
  28. }
  29. }
  30. </script>
  31.   </head>
  32. <body>
  33. ${msg}
  34. <html:form action="/user.do">
  35. <table width="100%" height="120" border="1" cellpadding="0" cellspacing="0" bordercolor="#66CCFF" class="STYLE1">
  36.   <html:hidden property="uno"/>
  37.   <html:hidden property="method"/>
  38.   <tr  class="tableHead" style="font-size: 20px">
  39.    <td height="46" colspan="2" align="center"><strong>密码修改</strong></td>
  40.   </tr>
  41.   <tr>
  42.     <td align="right" width="200">原密码:</td>
  43.     <td><html:password property="upwd" readonly="true"/>
  44.     <SPAN id="result"></SPAN></td>
  45.   </tr>
  46.   <tr>
  47.    <td align="right">新密码:</td>
  48.    <td><input type="password" name="newpwd" id="newpwd" /></td>
  49.   </tr>
  50.   <tr>
  51.     <td align="right">确认新密码:</td>
  52.    <td><input type="password" name="checkpwd" id="checkpwd"/></td>
  53.   </tr>
  54. <tr align="center"><td colspan="2">
  55.   <html:submit value="确认" onclick="return checkform();" />&nbsp;
  56.   <html:reset value="重置" /></td>
  57. </tr>
  58. </table>
  59. </html:form>
  60.   </body>
  61. </html>