📄 group.asp
字号:
<!--#include file="../function/connect.asp"-->
<!--#include file="../function/function.asp"-->
<%
Group_ID=request("Group_ID")
if Group_ID="" then
Group_ID=0
end if
strsql="select * from groups where Parent_ID=" & Group_ID
Set objRsA = Server.CreateObject("adodb.recordset")
objRsA.Open strsql,objConn,1,1
%>
<html>
<head>
<title>分组</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../cssD.css" rel=stylesheet>
</head>
<body bgcolor="#F3F3F3" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="1" cellspacing="0" bordercolordark=#FFFFFF bordercolorlight=#000000 cellpadding="0" align="center">
<tr height="22" class="tablehead" align="center">
<td width="30%">组名</td>
<td width="70%">组描述</td>
</tr>
<%
if not objrsA.eof then
do while not objrsA.eof
%>
<tr height="22">
<td width="30%" align="center"><a href="group.asp?Group_ID=<%=objrsA.Fields("Group_ID")%>"><%=objrsA.Fields("Group_Name")%></a></td>
<td width="70%"><%=objrsA.Fields("Group_Description")%></td>
</tr>
<%
objrsA.MoveNext
loop
End if%>
<tr height="22">
<td colspan="2"> <hr size="1" noshade width="100%">
</td>
</tr>
<tr height="22">
<td colspan="2" align="center"><a href="addgroup.asp?Group_ID=<%=Group_ID%>">添加新组</a></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -