⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 html_code.asp

📁 提供企业bug的追踪流程
💻 ASP
字号:
<%
function encodestr(str)
	str=trim(str)
	str=replace(str,"&nbsp;"," ")
	str=replace(str,"&lt;","<")
	str=replace(str,"&gt;",">")
	str=replace(str,"""","'")
	str=replace(str,"&quot;","""")
	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="&nbsp;"
	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 + -