asp

位置:IT落伍者 >> asp >> 浏览文章

asp html转成html编码程序


发布日期:2023年01月29日
 
asp html转成html编码程序

function htmlencode(str)
dim result
dim l
if isNULL(str) then
htmlencode=""
exit function
End if
l=len(str)
result=""
dim i
for i = to l
select case mid(stri)
case "<"
result=result+"&lt;"
case ">"
result=result+"&gt;"
case chr()
result=result+"&quot;"
case "&"
result=result+"&amp;"
case chr()
result=result+"&nbsp;"
if i+<=l and i> then
if mid(stri+)=chr() or mid(stri+)=chr() or mid(stri)=chr() or mid(stri)=chr() then
result=result+"&nbsp;"
else
result=result+" "
End if
else
result=result+"&nbsp;"
End if
case chr()
result=result+" "
case else
result=result+mid(stri)
End select
next
htmlencode=result
End function
}

上一篇:asp For Each Next 用法与For Each实例教程

下一篇:asp当中判断函数一览