📄 admin_adminmodify.asp
字号:
<!--#include file=function.asp-->
<%CheckAdmin3%>
<!--#include file="conn.asp"-->
<%
founderr=false
id=request.QueryString("id")
set rs=server.createobject("adodb.recordset")
sql="select * from admin where id="&id
rs.open sql,conn,1,1
if rs.eof then
errmsg=errmsg+"<br>"+"<li>服务器出错!请联系管理员"
founderr=true
else
Username=rs("Username")
Password=rs("Password")
oskey=rs("oskey")
rs.close
end if
if founderr=true then
call error()
else
%>
<html>
<head>
<LINK href="../style.css" rel=stylesheet type=text/css>
<title>OWEN 活动管理系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body topmargin="0" leftmargin="0" bgcolor="#9999CC">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="15%" valign="top" bgcolor="#9999CC" style="border-right: 1 solid #000000"><!--#include file="left.asp"--></td>
<td width="85%" align="center" valign="top" bgcolor="#D8D8EB"><br>
<table width="90%" border="0" cellpadding="0" cellspacing="1" bgcolor="#000000">
<form method="POST" action="admin_AdminSave.asp?id=<%=id%>" id=form2 name=form2>
<tr bgcolor="#BDBDDD">
<td width="100%" height="24" colspan=2 align=center><b>修 改 管 理 员 资
料</b></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="30%" height="22" align="right">用户名:</td>
<td width="70%">
<input type="text" name="username" value="<%=Username%>" size="20" class=input></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="30%" height="22" align="right">密码:</td>
<td width="70%">
<input type="text" name="password" value="<%=Password%>" size="20" class=input></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="30%" height="22" align="right">权限:</td>
<td width="70%" height="22">
<select name="oskey" style="font-size:9pt">
<option value=super<%if oskey="super" then%> selected<%end if%>>高级管理员</option>
<option value=check<%if oskey="check" then%> selected<%end if%>>中级管理员</option>
<option value=input<%if oskey="input" then%> selected<%end if%>>初级管理员</option>
</select>
</td>
</tr>
<tr align="center" bgcolor="#FFFFFF" height="24">
<td colspan=2>
<input type="hidden" value="edit" name="act">
<input type="submit" value=" 修 改 " name="cmdok2" class=input>
<input type="reset" value=" 清 除 " name="cmdcance2l" class=input>
</td>
</tr>
</form>
</table>
</td>
</tr>
</table>
</body>
</html>
<%end if%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -