手机
当前位置:查字典教程网 >编程开发 >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编码程序】相关文章:

asp下载防盗链代码

用asp实现检测文件编码

asp do while 循环语法与do while实例教程

UTF-8 Unicode Ansi 汉字GB2321几种编码转换程序

pjblog中清空引用的小程序

asp调用c#编制的com组件实例

access 数据连接程序

asp html标签转换html编码

asp中正则表达式过滤html代码函数

asp 特殊字符屏蔽代码

精品推荐
分类导航