"翻开数据库毗连文件
<!--#include file="conn.asp"-->
<%
"限制办理用户才干进入
if request.cookies("adminok")="" then
response.redirect "login.asp"
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>修正暗码栏目信息</title>
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div align="center"><center>
<font face=楷体_gb2312 size=4>动网文章办理办理员页面</font>
<table border="1" width="80%" bordercolorlight="#000000" cellspacing="0" cellpadding="0"
bordercolordark="#FFFFFF">
<%
dim rs,tsql
dim rst
"翻开纪录集ADMIN,并显示其内容
set rs=server.CreateObject("ADODB.RecordSet")
set rst=server.CreateObject("ADODB.RecordSet")
rs.open "select * from admin",conn,1
%>
<tr>
<td width="50%" align=center><form name=pass method="post" action="changepass.asp">
<font color=red>修正办理员信息</font></td>
<td width="50%" rowspan="4">* 如点击修正后仍显示本来暗码不必理睬,暗码已依照您输出的修正,您可以用新暗码上岸看看,或点刷新选择重试,这时候显示将正常! </td>
</tr>
<tr>
<td width="50%" align="center">
<INPUT TYPE="hidden" name=method value="chan">
"在输出栏内显示本来的办理员称号和暗码,可以在这里直接输出新的用户名和暗码
<INPUT TYPE="hidden" name=id value="<%=rs("id")%>">
名字:<INPUT TYPE="text" size=10 NAME="name" value="<%=rs("username")%>">
</td>
</tr>
<tr>
<td width="50%" align="center">暗码:<INPUT TYPE="text" size=10 NAME="pass" value="<%=rs("password")%>">
</td>
</tr>
<tr>
<td width="50%" align="center"><INPUT name="change" class=buttonface value="修正" type='submit'>
</td>
</tr>
</form>
"当前往的method值为提醒修正暗码的chan,chan在填写办理员称号和暗码的from外面用value界说,所以当前往的是chan则提醒为修正暗码,可以停止数据库更新,不然将不履行UPDATA号令
<%
rs.close
if request("method")="chan" then
if request("change")="修正" then
rs.open "select * from admin where id="+request("id"),conn,1,3
"使用前往的办理员ID指定纪录集中的纪录并对其停止更新
rs("username")=request("name")
rs("password")=request("pass")
rs.Update
end if
end if
rs.close
%>
<tr>
<td width="50%" valign="top">
<%
"翻开显示文章栏目纪录集
rst.open "select * from type",conn,1
if rst.EOF then
response.write "没有栏目:("
else
%><br>
<form name=edittype method="post" action="changepass.asp">
<p align=center><font color=red>文章栏目办理</font><br>
<%do while NOT rst.EOF%>
"顺次显示文章的栏目,并可经由过程点击删除,修正停止相干操作
<%=rst("type")%>
<a href="changepass.asp?typeid=<%=rst("typeid")%>&name=del">删除</a>
<a href="changepass.asp?typeid=<%=rst("typeid")%>&name=edit">修正</a>
<br>
<%
rst.MoveNext
loop
end if
rst.close
%>
</form>
"假设前往的NAME为DEL则提醒用户点击了删除毗连,那末将对数据库指定纪录集停止删除操作
<%
if request("name")="del" then
rst.open "delete * from type where typeid="+request("typeid"),conn,1
rst.close
end if
%>