📄 help_detail.asp
字号:
<%
dim dbpath
dbpath=""
%>
<!--#include file=Conn.asp -->
<!--#include file=include/MyRequest.asp -->
<!--#include file=Sub.asp -->
<%
id=my_request("id",1)
if id="" or isnull(id) or IsNumeric(id)=False then
response.write("<script>alert(""参数错误!"");location.href=""help_List.asp"";</script>")
response.end
end if
sql="select help_info_title,help_info_content from help_info where id="&id
set rs=conn.execute (sql)
txt_info_title =rs(0)
txt_info_content=rs(1)
rs.close
set rs=nothing
call up(help_info_title,"帮助详情","<a href=Help_List.asp>帮助中心</a> » 帮助详情")
response.write "<tr>"
response.write " <td><h2 align=center>"&txt_info_title&"</h2></td>"
response.write "</tr>"
response.write "<tr>"
response.write " <td style=table-layout:fixed;word-break:break-all>"&txt_info_content&"<br></td>"
response.write "</tr>"
call down()
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -