• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    ASP常用函数:XMLEncode

    输出RSS和XML时经常用到,和HTMLEncode还不完全一样

    原理:

    Character Converted To
    " quot;
    ' apos;
    lt;
    > gt;

    代码
    %
    Function XMLEncode(byVal sText)
        sText = Replace(sText, "" , "")
        sText = Replace(sText, "" , "lt;")
        sText = Replace(sText, ">" , "gt;")
        sText = Replace(sText, "'" , "apos;")
        sText = Replace(sText, """", "quot;")
        XMLEncode = sText
    End Function
    %>
    还有个:
    %
    Public Function XmlEncode(ByVal strText As String) As String
        Dim aryChars() As Variant
        aryChars = Array(38, 60, 62, 34, 61, 39)
        Dim i As Integer
        For i = 0 To UBound(aryChars)
            strText = Replace(strText, Chr(aryChars(i)), "#" aryChars(i) ";")
        Next
        XmlEncode = strText
    End Function
    %>

    上一篇:ASP常用函数:CLngIP()
    下一篇:查看所有的Server Variables的环境变量
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    ASP常用函数:XMLEncode ASP,常用,函数,XMLEncode,ASP,