pwd.asp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <!--#include file="Conn.asp"--><%Checklogin("")%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>管理区域</title>
  6. <link rel="stylesheet" href="css/common.css" type="text/css" />
  7. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  8. <script type="text/javascript" src="js/js.js"></script>
  9. <script>
  10. function chkpwdform(){
  11. _loginpwd = document.getElementById("loginpwd"),
  12. _loginpwd1 = document.getElementById("loginpwd1"),
  13. _loginpwd2 = document.getElementById("loginpwd2"),
  14. _loginname = document.getElementById("loginname");
  15. _save = document.getElementById("save");
  16. if(_save.disabled)return false;
  17. if( _loginpwd.value =='' ){
  18. alert('请输入原密码');
  19. _loginpwd.focus();
  20. return false;
  21. }
  22. if( _loginname.value =='' ){
  23. alert('请输入用户昵称');
  24. _loginname.focus();
  25. return false;
  26. }
  27. if( _loginpwd1.value != _loginpwd2.value ){
  28. alert('新密码两次密码输入不相同\n不修改请留空');
  29. _loginpwd2.focus();
  30. return false;
  31. }
  32. _save.disabled = true;
  33. }
  34. </script>
  35. </head>
  36. <body>
  37. <div id="man_zone">
  38. <%
  39. Act = Request.QueryString("act")
  40. If act = "save" Then
  41. loginpwd = TextEnCode(Request.Form("loginpwd"))
  42. loginpwd1 = TextEnCode(Request.Form("loginpwd1"))
  43. loginname = TextEnCode(Request.Form("loginname"))
  44. Set Rs = Server.CreateObject("ADODB.RecordSet")
  45. Rs.Open "Select loginpwd,loginname From login Where id="&Load_Session("loginid"),Conn,1,3
  46. If Not Rs.Bof And Not Rs.Eof Then
  47. If MD5(loginpwd)<>Rs(0) Then Response.Write "<script>alert('原密码输入错误');history.back()</script>":Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing:Response.End
  48. If loginpwd1<>"" Then Rs(0) = MD5(loginpwd1):Rs(1) = loginname
  49. Rs.Update:Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  50. Add_Session "loginname",loginname
  51. Else
  52. Response.Write "<script>alert('好像找不到您的资料呀?还是请您重新登陆一下吧');top.location.href='login.asp'</script>":Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing:Response.End
  53. End If
  54. Response.Write "<script>alert('更新成功');top.location.href='index.php'</script>"
  55. Response.End
  56. End If 'end save
  57. Set Rs=Server.CreateObject("ADODB.RecordSet")
  58. Rs.Open "Select loginlasttime,loginlastip,loginthistime,loginthisip,powercontent,logincount From login Left Join power On power.id=login.loginpower Where login.id="&Load_Session("loginid"),Conn,1,1
  59. If Not Rs.Bof And Not Rs.Eof Then
  60. loginlasttime=Rs(0):loginlastip=Rs(1):loginthistime=Rs(2):loginthisip=Rs(3):powercontent=Rs(4):logincount=Rs(5)
  61. Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  62. Else
  63. Response.Write "<script>alert('好像找不到您的资料呀?还是请您重新登陆一下吧');top.location.href='login.asp'</script>":Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing:Response.End
  64. End If
  65. %>
  66. <form name="form1" method="post" action="?act=save" onSubmit="return chkpwdform()">
  67. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  68. <tbody>
  69. <tr>
  70. <th width="15%">用户帐号</th>
  71. <td><input type="text" id="loginuser" name="loginuser" value="<%=Load_Session("loginuser")%>" class="txt1" disabled="disabled" style="width:300px;" /></td>
  72. </tr>
  73. <tr>
  74. <th width="15%">原密码</th>
  75. <td><input type="password" id="loginpwd" name="loginpwd" class="txt1" style="width:300px;" /></td>
  76. </tr>
  77. <tr>
  78. <th width="15%">用户昵称</th>
  79. <td><input type="text" id="loginname" name="loginname" value="<%=Load_Session("loginname")%>" class="txt1" style="width:300px;" /></td>
  80. </tr>
  81. <tr>
  82. <th width="15%">新密码</th>
  83. <td><input type="password" id="loginpwd1" name="loginpwd1" class="txt1" style="width:300px;" /><span style="color:red">(不修改请留空)</span></td>
  84. </tr>
  85. <tr>
  86. <th width="15%">密码确认</th>
  87. <td><input type="password" id="loginpwd2" name="loginpwd2" class="txt1" style="width:300px;" /></td>
  88. </tr>
  89. <tr>
  90. <th width="15%">上次登陆时间</th>
  91. <td><input type="text" value="<%=loginlasttime%>" class="txt1" disabled="disabled" style="width:300px;" /></td>
  92. </tr>
  93. <tr>
  94. <th width="15%">上次登陆IP</th>
  95. <td><input type="text" value="<%=loginlastip%>" class="txt1" disabled="disabled" style="width:300px;" /></td>
  96. </tr>
  97. <tr>
  98. <th width="15%">当前登陆时间</th>
  99. <td><input type="text" value="<%=loginthistime%>" class="txt1" disabled="disabled" style="width:300px;" /></td>
  100. </tr>
  101. <tr>
  102. <th width="15%">当前登陆IP</th>
  103. <td><input type="text" value="<%=loginthisip%>" class="txt1" disabled="disabled" style="width:300px;" /></td>
  104. </tr>
  105. <tr>
  106. <th width="15%">登陆次数</th>
  107. <td><input type="text" value="<%=logincount%>" class="txt1" disabled="disabled" style="width:300px;" /></td>
  108. </tr>
  109. <tr>
  110. <th width="15%">可用权限</th>
  111. <td><%=powercontent%></td>
  112. </tr>
  113. <tr>
  114. <th></th>
  115. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /> <input type="reset" name="save" id="save" value="重置" class="btn1" /></td>
  116. </tr>
  117. </tbody>
  118. </table>
  119. </form>
  120. </div>
  121. </body>
  122. </html>