📄 admin_index.asp
字号:
<!--#include file="admin_is.ini"-->
<%db="data/etaodu.mdb"%><!--#include file="conn.ini"-->
<%
if request("Submit")<>"" then
set rs=server.createobject("adodb.recordset")
sql="SELECT * from admin"
rs.open sql,conn,1,3
rs("password")=request("password")
rs.update
rs.close
end if
%>
<%
set rs=server.createobject("adodb.recordset")
sql="SELECT username,password from admin where username='"&session("board_admin")&"'"
rs.open sql,conn,1,3
pwd=rs("password")
rs.close
call connclose
%>
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>管理面板</title>
<LINK href="style.css" rel=Stylesheet type=text/css>
</head>
<body leftmargin="0" topmargin="0">
<form name="form1" method="post" action="">
<table>
<tr>
<td colspan="2"><!--#include file="top.ini"--></td>
</tr>
<tr>
<td width="72">密码重设:</td>
<td width="582"><input name="password" type="password" id="password" value="<%=pwd%>" maxlength="10"></td>
</tr>
<tr>
<td>动 作:</td>
<td><input type="submit" name="Submit" value="设定">
<input type="reset" name="Submit2" value="重置">
<input type="button" name="Submit3" value="退出" onclick="location.href='admin_out.asp'">
要更多的权限和更好性能请登录 WWW.PGCN.NET 购买“商业版盘古留言板”。</td>
</tr>
</table>
</form>
</body>
</html>
<script language = "JavaScript" src = "bottom.js"/></script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -