国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

ASP常用函數:XMLEncode

2024-05-04 11:02:02
字體:
來源:轉載
供稿:網友

輸出RSS和XML時經常用到,和HTMLEncode還不完全一樣

原理:

CharacterConverted To
""
''
&&
<<
>>

代碼
<%
Function XMLEncode(byVal sText)
    sText = Replace(sText, "&" , "&")
    sText = Replace(sText, "<" , "<")
    sText = Replace(sText, ">" , ">")
    sText = Replace(sText, "'" , "'")
    sText = Replace(sText, """", """)
    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
%>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 屏山县| 松原市| 马尔康县| 宁武县| 拉萨市| 射阳县| 洛宁县| 洞口县| 湖口县| 武安市| 仙桃市| 驻马店市| 正蓝旗| 东安县| 中江县| 分宜县| 彭阳县| 延庆县| 休宁县| 永川市| 沙田区| 明光市| 巴马| 元江| 久治县| 班玛县| 四会市| 资兴市| 镇江市| 玉林市| 满洲里市| 从江县| 满洲里市| 济南市| 乐东| 大石桥市| 三门峡市| 无为县| 云南省| 福清市| 通州区|