huser.asp
上传用户:syzzy1975
上传日期:2022-07-17
资源大小:670k
文件大小:6k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
  2. <%
  3. %><!--#include file="inc/config.asp"-->
  4. <!--#include file="inc/conn.asp"--> 
  5. <!--#include file="inc/chk.asp"--> 
  6. <%
  7. if session("rank")>1 then
  8. call Msgbox("对不起,您的权限不够!","Back","None")
  9. response.End
  10. end if
  11. %>
  12. <%
  13. '如果提交表单就建立Recoredset对像
  14. If NOT IsEmpty (Request.Form) then 
  15. set rs=server.CreateObject("adodb.recordset")
  16. '取得处理id号
  17. dim id
  18. id=request("Id")
  19. end if
  20. '添加后台用户
  21. If NOT IsEmpty (Request("AddHuser")) then
  22. rs.open "select * from admin",conn,1,3
  23. rs.addnew
  24. rs("admin")=trim(request("AddName"))
  25. rs("password")=md5(trim(request("AddPws")))
  26. rs("rank")=int(request("AddRank"))
  27. rs.update
  28. rs.close
  29. set rs=nothing
  30. call MsgBox("添加成功!","GoUrl","huser.asp")
  31. end If
  32. '删除后台用户
  33. If NOT IsEmpty (request("Del")) then
  34. '取得Id号
  35. conn.execute ("delete from admin where id="&id)
  36. call MsgBox("删除成功!","GoUrl","huser.asp")
  37. end If
  38. '修改后台用户资料
  39. if NOT IsEmpty (request("Modify")) then 
  40. '取得Id号
  41. rs.Open "select * from admin where id="&id,conn,1,3
  42. rs("admin")=trim(request("Name"))
  43. if trim(request("password"))<>"" then
  44. rs("password")=md5(trim(request("password")))
  45. end if
  46. rs("rank")=int(request("rank"))
  47. rs.Update
  48. rs.Close
  49. set rs=nothing
  50. call MsgBox("修改成功!","GoUrl","huser.asp")
  51. end if
  52. %>
  53. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  54. <html>
  55. <head>
  56. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  57. <title>406网络书店</title>
  58. <link href="../style.css" rel="stylesheet" type="text/css">
  59. </head>
  60. <body>
  61. <!--#include file="head.htm"-->
  62. <table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
  63.   <tr>
  64.     <td width="219" align="left" valign="top"><br>
  65.       <!--#include file="menu.htm"-->
  66.         <br></td><td width="561" align="left" valign="top">      
  67.         <br>        <table border="0" cellpadding="0" cellspacing="0">
  68.           <tr>
  69.             <td><img src="../images/w.gif" width="18" height="18"></td>
  70.             <td style="color:#415373">后台用户管理</td>
  71.           </tr>
  72.         </table>        <br>
  73.           <table width="100%" border="0" align="center" cellpadding="0" cellspacing="2">
  74.             <tr align="center" bgcolor="#FFFFFF" class="bluefont" height="20">
  75.               <td width="23%">管理员</td>
  76.               <td width="21%">密 码</td>
  77.               <td width="31%">权 限</td>
  78.               <td width="25%">操 作</td>
  79.             </tr>
  80.             <%set rs=server.CreateObject("adodb.recordset")
  81.         rs.Open "select * from admin order by rank",conn,1,1
  82.         do while not rs.EOF%>
  83. <form name="form2" method="post" action="">
  84.             <tr align="center" bgcolor="#FFFFFF" height="20">
  85.               <td><input name="Name" type="text" id="Name" value="<%=trim(rs("admin"))%>" size="12"></td>
  86.               <td><input name="Pws" type="text" id="Pws" size="12"></td>
  87.               <td>
  88.                 <%select case rs("rank")
  89.                 case "1"
  90.                 response.Write "<input type=radio name=rank value=1 checked>管理&nbsp;<input name=rank type=radio value=2 >添加&nbsp;<input type=radio name=rank value=3>查看"
  91.                 case "2"
  92.                 response.Write "<input type=radio name=rank value=1>管理&nbsp;<input name=rank type=radio value=2 checked>添加&nbsp;<input type=radio name=rank value=3>查看"
  93. case "3"
  94. response.Write "<input type=radio name=rank value=1>管理&nbsp;<input name=rank type=radio value=2>添加&nbsp;<input type=radio name=rank value=3  checked>查看"
  95.                 end select%>
  96.                 <input name="Id" type="hidden" id="Id" value="<%=int(rs("id"))%>">
  97. </td>
  98.               <td><input name="Modify" type="submit" id="Modify" value="修改">
  99.                   <input name="Del" type="submit" id="Del" value="删除">
  100.               </td>
  101.             </tr>
  102. </form>
  103.             <%rs.movenext
  104.         loop
  105.         rs.close
  106.         set rs=nothing
  107.         %>
  108.           </table>
  109.           <br>          <br>          <table border="0" cellpadding="0" cellspacing="0">
  110.           <tr>
  111.             <td><img src="../images/w.gif" width="18" height="18"></td>
  112.             <td style="color:#415373">后台用户添加</td>
  113.           </tr>
  114.           </table>          <form name="form1" method="post" action="">
  115. <br>
  116.         <table width="100%" border="0" align="center" cellpadding="0" cellspacing="2">
  117.           <tr align="center" bgcolor="#FFFFFF" class="bluefont" height="20">
  118.             <td width="21%">管理员</td>
  119.             <td width="23%">密 码</td>
  120.             <td width="35%">权 限</td>
  121.             <td width="21%">操 作</td>
  122.           </tr>
  123.           <tr align="center" bgcolor="#FFFFFF">
  124.             <td><input name="AddName" type="text" id="AddName" size="12"></td>
  125.             <td><input name="AddPws" type="text" id="AddPws" size="12"></td>
  126.             <td><input type="radio" name="AddRank" value="1">
  127.       管理
  128.         <input name="AddRank" type="radio" value="2" checked>
  129.       添加
  130.       <input type="radio" name="AddRank" value="3">
  131.       查看</td>
  132.             <td><input name="AddHuser" type="submit" id="AddHuser" value="添加"></td>
  133.           </tr>
  134.         </table>
  135.           </form>          <br>          <table width="231" border="0" cellpadding="0" cellspacing="0">
  136.     <tr>
  137.       <td width="24"><img src="../images/w.gif" width="18" height="18"></td>
  138.       <td width="207" style="color:#415373">操作注意事项及说明</td>
  139.     </tr>
  140.           </table>          <br>          <table width="80%" border="0" align="center" cellpadding="5" cellspacing="0">
  141.     <tr>
  142.       <td><font color="#FF0000">·后台管理用户与前台用户毫无牵连。<br>
  143.         ·添加人员只能添加、修改、删除商品资料。<br>
  144.         ·查看人员可以管理商品评论和用户订单。<br>
  145.         ·管理员拥有本站所有管理权限。<br>
  146.         ·登录密码采用MD5不可逆转方式加密,如不修改密码,请留空。 <br>
  147.         <br>
  148.       </font></td>
  149.     </tr>
  150.           </table></td>
  151.   </tr>
  152. </table>
  153. <!--#include file="foot.htm"-->
  154. </body>
  155. </html>