最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
html 过滤与敏感字符过滤转换程序
时间:2022-06-30 09:13:51 编辑:袖梨 来源:一聚教程网
Function HTMLEncode(str,isRequest)
If isRequest = 1 Then
str = safeRequest(str,0)
End If
If str = "" Or IsNull(str) Or IsEmpty(str) Then
HTMLEncode = ""
Exit Function
End If
' str = Replace(str,"&","&")
str = Replace(str,"<","<")
str = Replace(str,">",">")
str = Replace(str,"'","'")
str = Replace(str,"""",""")
str = Replace(str," "," ")
str = Replace(str,vbcr,"")
' str = Replace(str,vblf & vblf,"
")
' str = Replace(str,vblf,"
")
HTMLEncode = Str
End Function
Public Function HTMLDecode(str)
If str = "" Or IsNull(str) Or IsEmpty(str) Then
HTMLDecode = ""
Exit Function
End If
str = Replace(str,"&","&")
str = Replace(str,"<","<")
str = Replace(str,">",">")
str = Replace(str,"'","'")
str = Replace(str,""","""")
str = Replace(str," "," ")
' str = Replace(str,"
",vbcrlf)
' str = Replace(str,"
",vblf)
HTMLDecode = str
End Function
相关文章
- 魔法工艺官网首页入口 魔法工艺官方网站 03-22
- 网上查火车票余票技巧-12306余票查询详细步骤 03-22
- 三国:谋定天下官网首页入口 三国:谋定天下官方网站 03-22
- 逆天纪官网首页入口 逆天纪官方网站 03-22
- 夸克高考使用指南-夸克高考志愿填报入口及教程详解 03-22
- 杀戮尖塔2禁忌魔典卡牌有什么用 禁忌魔典卡牌图鉴效果 03-22