📄 help.asp
字号:
<!--#include file="main.asp"-->
<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 #cc3300 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 #cc3300 solid">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align=center>
<tr><td height=5></td></tr>
<tr><td height=30 bgcolor=cc3300 style="border-bottom:1px #cc3300 solid" class=f14> <strong><a href=about.asp><font color=#ffffff>关于我们</font></a></strong></td></tr>
<tr><td height=5></td></tr>
<tr><td height=30 bgcolor=cc3300 style="border-bottom:1px #cc3300 solid" class=f14> <strong><a href=help.asp><font color=#ffffff>帮助首页</font></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 #cc3300 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 #cc3300 solid" valign=top>
<!--==================-->
<%if request("id")<>"" then%>
<table width="98%" border="0" cellspacing="0" cellpadding="0" align=right>
<%
sql="select * from SMT_help where SMT_id="&request("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 #cc3300 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 request("sort_id")<>"" then
sql="select * from SMT_help where SMT_helpsort="&request("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 #cc3300 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=#cc3300></td></tr>
<tr>
<td align="center" height=80><%=citybottom%></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -