📄 fun.asp
字号:
<!--#include file="conn.asp"-->
<%function kbbs(stru)
if not isnull(stru) then
set cov=conn.execute("select * from cover")
do while not cov.eof
ff=cov("word")
i=1
stru = replace(stru, ff, "*_*")
i=i+1
cov.movenext
loop
cov.close
set cov=nothing
stru = replace(stru, ">", ">")
stru = replace(stru, "<", "<")
stru = Replace(stru, CHR(32), " ")
stru = Replace(stru, CHR(9), " ")
stru = Replace(stru, CHR(34), """)
stru = Replace(stru, CHR(39), "'")
stru = Replace(stru, CHR(13), "")
stru = Replace(stru, "script", "script")
stru = Replace(stru, CHR(10), "<br> ")
kbbs = stru
end if
end function
function bbs(stru)
if not isnull(stru) then
set cov1=conn.execute("select * from cover")
do while not cov1.eof
tt=cov1("word")
i=1
stru = replace(stru, tt, "*_*")
i=i+1
cov1.movenext
loop
cov1.close
set cov=nothing
stru = replace(stru, ">", ">")
stru = replace(stru, "<", "<")
stru = Replace(stru, CHR(32), " ")
bbs = stru
end if
end function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -