📄 system_info.asp
字号:
<!--#include file="../film_conn.asp"-->
<!--#include file="session.asp"-->
<!--#include file="../set_url.asp"-->
<%
if session("flag")>1 then
response.write "<br><p align=center>您的操作权限不够!</p>"
response.end
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>系统信息</title>
</head>
<body bgcolor="#E8E8E8">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr><td width="100%" bgcolor="#F7F7F7" height="20">
<p align="center"><b><font size="2">网站信息管理页</font></b></td></tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr><td width="100%" colspan="2" bgcolor="#FFFFFF"><font size="2"><b>栏目管理:</b></font></td>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from type"
rs.open sql,conn,1,3
do while not rs.eof
%>
</tr>
<form method="POST" onsubmit action="<%=weburl%>/<%=adminurl%>/film_server_manage.asp?typeid=<%=rs("typeid")%>">
<tr><td width="10%" nowrap bgcolor="#FFFFFF">
<p align="center"><%=rs("type")%></td>
<td width="95%" nowrap bgcolor="#FFFFFF"><font size="2">
<input type="text" name="typenameg" size="15"></font> <font size="2">
<input type="submit" value="修改" name="change">
<input type="submit" value="删除" name="delet"></font></td></tr>
</form>
<%
rs.movenext
loop
%>
<form method="POST" onsubmit action="<%=weburl%>/<%=adminurl%>/film_server_manage.asp">
<tr><td width="5%" nowrap bgcolor="#FFFFFF">
<p align="center">新增:</td>
<td width="104%" nowrap bgcolor="#FFFFFF"><font size="2">
<input type="text" name="type" size="15"></font> <font size="2">
<input type="submit" value="新增" name="addname"></font></td>
</tr>
</form>
</table>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -