pwdEdit.asp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <!--#include file="Conn.asp"--><%Checklogin()%>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>管理区域</title>
  7. <link rel="stylesheet" href="css/common.css" type="text/css" />
  8. <script language="javascript" src="system/js/jquery-1.7.2.min.js"></script>
  9. <script type="text/javascript" src="js/js.js"></script>
  10. <script type="text/javascript" src="system/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. </head>
  12. <body class="clear">
  13. <!--#include file="panel.asp"-->
  14. <div id="man_zone">
  15. <%
  16. id = Request.QueryString("id")
  17. Page = Request.QueryString("Page")
  18. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  19. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  20. hrefstr = "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  21. employee_id=Session("employee_id")
  22. act=Request.QueryString("act")
  23. If act="save" Then
  24. em_tel=TextEncode(Request.Form("em_tel"))
  25. em_email=TextEncode(Request.Form("em_email"))
  26. em_password=MD5(Request.Form("em_password"))
  27. pwd=MD5(Request.Form("pwd"))
  28. pwdre=MD5(Request.Form("pwdre"))
  29. editpwd=false
  30. If Not IsNumeric(employee_id) Then employee_id=0
  31. If pwd<>"8f00b204e9800998" and pwdre<>"8f00b204e9800998" Then
  32. editpwd=true
  33. If pwd<>pwdre Then
  34. conn.close
  35. set conn=Nothing
  36. Response.write "<script>alert('两次密码输入不一致!');history.back();</script>"
  37. Response.end
  38. End if
  39. End if
  40. Set Rs = Server.CreateObject("ADODB.RecordSet")
  41. Rs.Open "select * from employee where id="&employee_id,conn,1,3
  42. If Not Rs.bof and Not Rs.eof Then
  43. Rs("em_email")=em_email
  44. Rs("em_tel")=em_tel
  45. changeSuccess=1
  46. If editpwd Then
  47. If em_password=Rs("em_password") Then
  48. Rs("em_password")=pwd
  49. changeSuccess=2
  50. Else
  51. changeSuccess=3
  52. End IF
  53. End IF
  54. End IF
  55. Rs.update
  56. Rs.Close
  57. Set Rs=Nothing
  58. conn.close
  59. set conn=Nothing
  60. If Cint(changeSuccess)=1 Then
  61. Response.write "<script>alert('资料修改成功!');history.back();</script>"
  62. ElseIf Cint(changeSuccess)=2 Then
  63. Response.write "<script>alert('密码修改成功!请退出重新登录');location.href='index.php?act=logout';</script>"
  64. Else
  65. Response.write "<script>alert('原始密码错误!');history.back();</script>"
  66. End If
  67. Response.End
  68. End If'End act
  69. Set Rs = Server.CreateObject("ADODB.RecordSet")
  70. Rs.Open "select em_email,em_tel from employee where id="&Session("employee_id"),conn,1,1
  71. em_tel=Rs("em_tel")
  72. em_email=Rs("em_email")
  73. Rs.Close
  74. Set Rs = Nothing
  75. %>
  76. <form name="form1" method="post" action="pwdEdit.asp<%=hrefstr%>&act=save" onSubmit="return checkpwd();">
  77. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  78. <tbody>
  79. <tr>
  80. <th width="8%">电话:</th>
  81. <td><input type="text" id="em_tel" name="em_tel" value="<%=em_tel%>" class="txt1" /></td>
  82. </tr>
  83. <tr>
  84. <th width="8%">邮箱:</th>
  85. <td><input type="text" id="em_email" name="em_email" value="<%=em_email%>" class="txt1" /></td>
  86. </tr>
  87. <tr>
  88. <th width="8%">原始密码:</th>
  89. <td><input type="password" id="em_password" name="em_password" value="" class="txt1" placeholder="不修改密码请留空"/></td>
  90. </tr>
  91. <tr>
  92. <th width="8%">新密码:</th>
  93. <td><input type="password" id="pwd" name="pwd" value="" class="txt1" placeholder="不修改密码请留空" /></td>
  94. </tr>
  95. <tr>
  96. <th width="8%">请再次输入</th>
  97. <td><input type="password" id="pwdre" name="pwdre" value="" class="txt1" placeholder="不修改密码请留空" /></td>
  98. </tr>
  99. <tr>
  100. <th></th>
  101. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /></td>
  102. </tr>
  103. </tbody>
  104. </table>
  105. </form>
  106. </div>
  107. </body>
  108. </html>
  109. <%Conn.Close:Set Conn=Nothing%>