?? help_list.asp
字號:
<%
dim dbpath
dbpath=""
%>
<!--#include file=Conn.asp -->
<!--#include file=include/MyRequest.asp -->
<!--#include file=Sub.asp -->
<%
call up("幫助中心","幫助中心","幫助中心")
dim rs,sql,id,help_info_title
set rs=server.createobject("adodb.recordset")
sql="select id,help_info_title from help_info order by id desc"
rs.open sql,conn,1,1
if rs.eof then
response.write "暫無幫助信息!"
else
set id = rs(0)
set txt_info_title= rs(1)
while not rs.eof
response.write "<tr><td><a href=Help_Detail.asp?id="&id&">"&txt_info_title&"</td></tr>"
rs.movenext
wend
end if
rs.close
set rs=nothing
call down()
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -