📄 html_code.asp
字号:
<%
function encodestr(str)
str=trim(str)
str=replace(str," "," ")
str=replace(str,"<","<")
str=replace(str,">",">")
str=replace(str,"""","'")
str=replace(str,""","""")
str=replace(str,vbCrLf&vbCrlf,"</p><p>")
str=replace(str,vbCrLf,"<br>")
encodestr=replace(str," "," ")
end function
function UBBCode(strContent)
if trim(strContent)<>"" then
strContent=encodestr(strContent)
else
strContent=" "
end if
UBBCode=strContent
end function
function cutstr(mtitle,mlength)
if len(mtitle)>mlength then
madd="..."
else
madd=""
end if
mtitle=mid(mtitle,1,mlength)
cutstr=mtitle+madd
end function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -