📄 admin_passwordmana.asp
字号:
<!--#include file="function.asp"-->
<%checkadmin%>
<!--#include file="top.asp"-->
<%
sql="select * from admin where id="&session("adminid")
rs.open sql,conn,1,1
if rs.eof then
errmsg="<li>数据库操作错误!</li>"
call error()
Response.End
else
%>
<table border="0" width=770 align=center cellspacing="1" cellpadding="1" bgcolor="<%=Tablebackcolor%>">
<tr>
<td bgcolor="<%=Tabletitlecolor%>" align="center" width="163" valign="top"> <br>
<!--#include file="admin_left.asp"-->
</td>
<td bgcolor="<%=Tablebodycolor%>" width="600" height="2" align="center">
<table width="379" border="0" cellspacing="1" cellpadding="3" bgcolor="#333333" align="center">
<form name="form" method="post" action="admin_passwordsave.asp">
<tr bgcolor="<%=Tabletitlecolor%>" align="center">
<td colspan="2">管理员密码管理</td>
</tr>
<tr bgcolor="#FFFFEE">
<td width="125" align="right" nowrap><font color="#663333">管理员:</font></td>
<td width="239">
<input type="text" name="Admin" size="30" value="<%=rs("Admin")%>" disabled>
</td>
</tr>
<tr bgcolor="#FFFFEE">
<td width="125" align="right" nowrap><font color="#663333">初始密码:</font></td>
<td width="239">
<input type="password" name="Password" size="30" value="<%=rs("Password")%>">
</td>
</tr>
<tr bgcolor="#FFFFEE">
<td width="125" align="right" nowrap><font color="#663333">验证密码:</font></td>
<td width="239">
<input type="password" name="Password2" size="30" value="<%=rs("Password")%>">
</td>
</tr>
<tr bgcolor="#FFFFEE" align="center">
<td colspan="2">
<input type="submit" name="Submit" value="确 定">
<input type="reset" name="Reset" value="清 除">
</td>
</tr>
</form>
</table>
</td>
</tr>
</table>
<!--#include file="copyright.asp"-->
</body>
</html>
<%
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -