手机
当前位置:查字典教程网 >编程开发 >ASP教程 >asp html转成html编码程序
asp html转成html编码程序
摘要:functionhtmlencode2(str)dimresultdimlifisNULL(str)thenhtmlencode2=""ex...

function htmlencode2(str)
dim result
dim l
if isNULL(str) then
htmlencode2=""
exit function
End if
l=len(str)
result=""
dim i
for i = 1 to l
select case mid(str,i,1)
case "<"
result=result+"<"
case ">"
result=result+">"
case chr(34)
result=result+"""
case "&"
result=result+"&"
case chr(32)
result=result+" "
if i+1<=l and i-1>0 then
if mid(str,i+1,1)=chr(32) or mid(str,i+1,1)=chr(9) or mid(str,i-1,1)=chr(32) or mid(str,i-1,1)=chr(9) then
result=result+" "
else
result=result+" "
End if
else
result=result+" "
End if
case chr(9)
result=result+" "
case else
result=result+mid(str,i,1)
End select
next
htmlencode2=result
End function
}

【asp html转成html编码程序】相关文章:

tsys _rss程序

asp下载防盗链代码

asp:debug类调试程序

Asp根据日期转换成星座输出

ASP、vbscript编码模板

asp 简单ubb代码转换程序

asp html代码转安全ascii代码

asp querystring使用教程

asp html标签转换html编码

用asp实现检测文件编码

精品推荐
分类导航