adduser.asp
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:3k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="../checkpost.asp"-->
  2. <!--#include file="security.asp"-->
  3. <%if session("flag")>1 then
  4.     response.write "<br><p align=center>您的操作权限不够!</p>"
  5.     response.end
  6. end if
  7. %>
  8. <HTML>
  9. <HEAD>
  10. <TITLE></TITLE>
  11. <META http-equiv="Content-Type" content="text/html; charset=gb2312">
  12. <LINK href="inc/Admin_STYLE.CSS" rel="stylesheet" type="text/css">
  13. <script language="javascript">
  14. function check()
  15. {
  16.   if(document.form1.username.value=="")
  17.     {
  18.       alert("用户名为空");
  19.       return false;
  20.     }
  21.     
  22.   if(document.form1.newpin.value=="")
  23.     {
  24.       alert("密码不能为空");
  25.       return false;
  26.     }
  27.     
  28.   if((document.form1.newpin.value)!=(document.form1.re_newpin.value))
  29.     {
  30.       alert("密码不匹配");
  31.       return false;
  32.     }
  33. }
  34. </script>
  35. </HEAD>
  36. <BODY leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  37. <DIV align="center"> 
  38.   <!--#include file="top1.asp"-->
  39.   <form method="post" action="saveuser1.asp" name="form1" onsubmit="javascript:return check();">
  40.     <TABLE width="50%" border="0" cellspacing="1" cellpadding="0" class="border">
  41.       <TR> 
  42.         <TD height="25" colspan="2" bgcolor="#429AEF"> <DIV align="center"><strong><font color="#FFFFFF">新增管理员</font></strong></DIV></TD>
  43.       </TR>
  44.       <TR> 
  45.         <TD height="30" class="tdbg"> <DIV align="center">用 户 名:  </DIV></TD>
  46.         <TD class="tdbg"> 
  47.           <font size="2">
  48.           <input type="text" name="username" size="20">
  49.         </font></TD>
  50.       </TR>
  51.       <TR> 
  52.         <TD height="30" class="tdbg"> <DIV align="center">初始密码:  </DIV></TD>
  53.         <TD height="30" class="tdbg"> 
  54.           <font size="2">
  55.           <input type="password" name="newpin" size="20">
  56.         </font></TD>
  57.       </TR>
  58.       <TR> 
  59.         <TD height="30" class="tdbg"> <DIV align="center">确认密码:  </DIV></TD>
  60.         <TD height="30" class="tdbg"> 
  61.           <font size="2">
  62.           <input type="password" name="re_newpin" size="20">
  63.         </font></TD>
  64.       </TR>
  65.       <TR> 
  66.         <TD height="30" colspan="2" class="tdbg"> <DIV align="center">权限设置 </DIV></TD>
  67.       </TR>
  68.       <TR> 
  69.         <TD height="30" colspan="2" class="tdbg"> <DIV align="center"> 
  70.             <select size="1" name="flag">
  71.               <option selected value="4">====无管理权限====</option>
  72.               <option value="3">====初级管理员====</option>
  73.               <option value="2">====高级管理员====</option>
  74.               <option value="1">====超级管理员====</option>
  75.             </select>
  76.         </DIV></TD>
  77.       </TR>
  78.     </TABLE>
  79.     <P> 
  80.       <INPUT type="submit" name="Submit" value="确定">
  81.        
  82.       <input name="Cancel" type="button" id="Cancel" value="取消" onClick="window.location.href='adminuser.asp'" style="cursor:hand;">
  83.     </P>
  84.   </FORM>
  85.   <P> </P>
  86.   <P align=center></P> </DIV>
  87. </BODY>
  88. </HTML>