Sys_new.asp
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <!--#include file="../../inc/conn.asp"-->
  2. <html>
  3. <head>
  4. <title>管理帐号修改</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <LINK REL="stylesheet" HREF="../images/style.css" TYPE="text/css"> <style type="text/css">
  7. <!--
  8. .style1 {
  9. color: #FFFFFF;
  10. font-weight: bold;
  11. }
  12. -->
  13. </style>
  14. </head>
  15. <body bgcolor="#FFFFFF" text="#000000">
  16. <table width="100%" border="0" cellspacing="0" cellpadding="1"> <tr> <td> <%
  17. Dim User_ID
  18. User_ID=session("key")
  19. Dim User
  20. dim rs
  21. if request.form("operation")="edit" then
  22. set rs=conn.execute("select admin,pwd from admin where admin='"&trim(request("admin"))&"'")
  23. if rs.eof then
  24. set rs=conn.execute("insert into admin (admin,pwd,qx) Values ('"&trim(request("admin"))&"','"&trim(request("oldpwd"))&"','"&trim(request("qx"))&"')")
  25. response.write"<script>alert('新的帐号添加成功n新的帐号名称为"&request.form("admin")&"n新的登录密码为"&request.form("oldpwd")&"');location.href='?';</script>"
  26. else
  27. response.write"<script>alert('已经有相同的用户名!');history.go(-1);</script>"
  28. end if
  29. end if
  30. %> <form name="form1" method="post" action="?" onSubmit="return frmchk();"> <table width="100%" border="1" cellspacing="0" cellpadding="2" align="center" bordercolordark="#ffffff" bordercolorlight="#000000"> 
  31. <tr BGCOLOR="#23458B"> <td height="25" colspan="2"> <div align="center" class="style1">管理帐号添加</div></td>
  32. </tr> 
  33. <tr> <td width="49%" height="25"> <div align="center">登录帐号</div></td><td width="51%" height="25"> <input type="text" name="admin" size="15"> 
  34. <font color="#D71550"><font color="#EA2661">*</font></font> </td></tr> <tr> <td width="49%" height="12"> 
  35. <div align="center">登录密码</div></td><td width="51%" height="12"> <input type="text" name="oldpwd" size="15"> 
  36. <font color="#D71550"> <font color="#EA2661">*</font></font> </td></tr>
  37. <tr>
  38.   <td width="49%" height="13"><div align="center">管理员权限</div></td>
  39.   <td height="13"><select name="qx" id="qx">
  40.     <option value="0">超级管理员</option>
  41.     <option value="1" selected>普通管理员</option>
  42.   </select>
  43.   </td>
  44. </tr> 
  45. <tr> <td height="25" colspan="2"> 
  46. <div align="center"> <input type="submit" name="Submit" value="添加"> <input type="button" value="取消" onClick="history.go(-1)" name="button"> 
  47. <input type="hidden" name="operation" value="edit"> </div></td></tr> </table>
  48. <div align="center"><BR>说明:<font color="#D71550"><font color="#EA2661">*</font></font>为帐号修改必须填写的内容<br> 
  49. <script language="JavaScript">
  50. function frmchk()
  51. {
  52. if (form1.admin.value == "")
  53. {
  54. alert("请填写管理帐号名称!");
  55. form1.admin.focus();
  56. return false;
  57. }
  58. if (form1.oldpwd.value == "")
  59. {
  60. alert("请填写密码!");
  61. form1.oldpwd.focus();
  62. return false;
  63. }
  64. }
  65. </script> </div></form> </td></tr> </table>
  66. </body>
  67. </html>
  68. <%
  69. call COCLS
  70. %>