www.gusucode.com > 深度学习(asp)通讯录 0.0.10 (utf-8)码程序 > admin/adminUser/adminUser_Update.asp

    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
'session.CodePage=65001
response.Charset=utf-8
%>
<%
projectRootPath = "../../"	'相对当前应用程序根的位置
%>
<!-- #include file ="../include/checkPurview.asp"-->
<!-- #include file="../include/md5.asp"-->

<!--#include file="../../ConnDB.asp"-->


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="robots" content="noindex,nofollow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../themes/base.css">
<link href="../themes/frmRight/frameRight.css" rel="stylesheet" type="text/css" />

<script language="javascript">

function form1_onsubmit()
{
	if (document.form1.UserName.value=="")
    {
      document.form1.UserName.focus();
	  window.alert("用户名不能为空!!!");
      return false;  
     }
	 if (document.form1.password1.value!= document.form1.password2.value)
     {
      document.form1.UserName.focus();
      window.alert("密码输入不一致!!!");
      return false;
     }
}
</script>

</head>
<body  id="bodyBg1">
<br />
&nbsp; <a href="adminUser_Manage.asp">用户管理</a> | <a href="adminUser_Add.asp">添加用户</a>
<hr color="#0099FF" size="1" />
<br />
<dl class="manageContent">
    <dt>用户修改管理</dt>
    <dd>
    	<br />
<%
if Request.Form("UserName") <> "" then
	UserName=trim(Request.Form("UserName"))
	password1=MD5(trim(Request.Form("password1")) ,32)
	'password2=Request.Form("password2")
	Purview=Request.Form("Purview")
	id=request.Form("id")
	
	sql_serach="select *  from tAdmin where fuserName='"&UserName&"' "
	set rsUserSearch=conn.execute(sql_serach)
	if rsUserSearch.eof and rsUserSearch.bof then
		sql_add="update tAdmin set fuserName='"&UserName&"',fpassword='"&password1&"',fpurview='"&Purview&"' where fid="&id

		conn.execute(sql_add)
		
		response.Write("<p align='center'>用户:["& UserName &"] 添加成功</p>")
	else
		Response.Write("<p align='center'>["& UserName &"] 已被注册,请注册其它名称</p>")
	end if
	rsUserSearch.close
	set rsUserSearch=nothing
else
	id=request.QueryString("ID")
	Sql="Select * from tAdmin where fID="& id
	Set Rs=conn.execute(sql)
%>
<form id="form1" name="form1" method="post" action="" onsubmit="return form1_onsubmit()">
  <table width="60%" border="0" align="center" class="tableBoderForm">
    <tr>
      <td height="30">用户名称:</td>
      <td><input type="text" name="UserName" value="<%=Rs("fuserName")%>" />
      &nbsp;&nbsp;* 必添项</td>
    </tr>
    <tr>
      <td height="30"><p>用户密码:</p>      </td>
      <td><input type="password" name="password1" /></td>
    </tr>
    <tr>
      <td height="30">确认密码:</td>
      <td><input name="password2" type="password" /></td>
    </tr>
    <tr>
      <td height="30">管理权限:</td>
      <td><select name="purview" id="purview">
        <option value="管理员" selected="selected">管理员</option>
      </select>      </td>
    </tr>
    <tr>
      <td height="30"><input type="hidden" name="id" value="<%=ID%> "/></td>
      <td><input type="submit" name="Submit" value="修改" />
      <input type="reset" name="Reset" value="重置" /></td>
    </tr>
  </table>
</form><br />
	<%
    Rs.close
    Set Rs=Nothing
end if
Call CloseConnDB()
%>        
        <br />
    </dd>
</dl>
<br />
</body>
</html>