help.asp
来自「一个完全仿照阿里巴巴的网站管理系统 本软件没有版权问题」· ASP 代码 · 共 102 行
ASP
102 行
<!--#include file="main.asp"-->
<%id=request("id")
sort_id=request("sort_id")
if ID<>"" then
if id="" or IsNumeric(id)<>true then
response.write"请输入正确的ID号!"
response.end
end if
end if
if sort_id<>"" then
if sort_id="" or IsNumeric(sort_id)<>true then
response.write"请输入正确的ID号!"
response.end
end if
end if
%>
<html>
<head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>使用帮助 - <%=citytitle%></title>
</head>
<body topmargin="0">
<%SMT_TOP%>
<table width="760" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td style="border-bottom:1px #999999 solid"><img src="img/helptop.gif"></td>
</tr>
</table>
<table width="760" border="0" cellspacing="0" cellpadding="0" align=center>
<tr>
<td width="150" valign=top bgcolor=#fafafa style="border-right:1px #999999 solid">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align=center>
<tr><td height=5></td></tr>
<tr><td height=30 bgcolor=cccccc style="border-bottom:1px #999999 solid" class=f14> <strong><a href=about.asp>关于我们</a></strong></td></tr>
<tr><td height=5></td></tr>
<tr><td height=30 bgcolor=cccccc style="border-bottom:1px #999999 solid" class=f14> <strong><a href=help.asp>帮助首页</a></strong></td></tr>
<%sql="select * from SMT_helpsort order by SMT_date desc"
set rs=server.createobject("ADODB.Recordset")
rs.open sql,conn,1,1
n=0
while not rs.eof
n=n+1%>
<tr><td height=5></td></tr>
<tr><td height=30 bgcolor=efefef style="border-bottom:1px #cccccc solid" class=f14> <strong><%=n%>,</strong><a href=help.asp?sort_id=<%=rs("SMT_id")%>><%=rs("SMT_helpsort")%></a></td></tr>
<%rs.movenext
wend
rs.Close()%>
<tr><td height=20></td></tr>
</table>
</td>
<td width="610" style="border-left:1px #cccccc solid" valign=top>
<!--==================-->
<%if id<>"" then%>
<table width="98%" border="0" cellspacing="0" cellpadding="0" align=right>
<%
sql="select * from SMT_help where SMT_id="&id&" order by SMT_id desc"
set rs=server.createobject("ADODB.Recordset")
rs.open sql,conn,1,1
if not rs.eof then%>
<tr><td height=5 bgcolor=#ffffff></td></tr>
<tr><td height=30 bgcolor=#efefef style="border-bottom:1px #cccccc solid" class=f14> <strong><a href=help.asp?id=<%=rs("SMT_id")%>><%=rs("SMT_helptit")%></a></strong></td></tr>
<tr><td height=30><p style="line-height:150%"><br><%=code_jk(rs("SMT_help"))%></td></tr>
<%end if
rs.Close()%>
<tr><td height=50 align=center><a href="javascript:history.go(-1)" class=red><strong>返回 >></strong></a></td></tr>
</table>
<%else%>
<table width="98%" border="0" cellspacing="0" cellpadding="0" align=right>
<%if sort_id<>"" then
sql="select * from SMT_help where SMT_helpsort="&sort_id&" order by SMT_id desc"
else
sql="select top 20 * from SMT_help where SMT_key=2 order by SMT_id desc"
end if
set rs=server.createobject("ADODB.Recordset")
rs.open sql,conn,1,1
while not rs.eof%>
<tr><td height=5 bgcolor=#ffffff></td></tr>
<tr><td height=30 bgcolor=#efefef style="border-bottom:1px #cccccc solid" class=f14> <strong><a href=help.asp?id=<%=rs("SMT_id")%>><%=rs("SMT_helptit")%></a></strong></td></tr>
<tr><td height=30><p style="line-height:150%"><%=code_jk(left(rs("SMT_help"),100))&"..."%></td></tr>
<%rs.movenext
wend
rs.Close()%>
<tr><td height=50></td></tr>
</table>
<%end if%>
<!--========================================================================-->
</td>
</tr>
</table>
<table width="760" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor=#ffffff>
<tr><td height=2 bgcolor=#4795EC></td></tr>
<tr>
<td align="center" height=80><%=citybottom%></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?