📄 g_desc.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 Group_ID=" & Group_ID
Set objRsA = Server.CreateObject("adodb.recordset")
objRsA.Open strsql,objConn,1,1
if not objRsA.eof then
Group_Description=objrsA.fields("Group_Description")
end if
%>
<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="0" cellspacing="0" bordercolordark=#FFFFFF bordercolorlight=#000000 cellpadding="0" align="center">
<tr height="22" align="left">
<td width="100%"><%=Group_Description%></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -