g_desc.asp
来自「客户管理crm xitong ,希望能给你带来帮助」· ASP 代码 · 共 29 行
ASP
29 行
<!--#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 + =
减小字号Ctrl + -
显示快捷键?