asp函数转换xml中的实体字符[转义符]

作者:佚名 来源:aspxuexi.com 时间:2008-10-16 17:07:00 




<%
Function XMLEncode(byVal sText)
sText = Replace(sText, "&" , "&amp;")
sText = Replace(sText, "<" , "&lt;")
sText = Replace(sText, ">" , "&gt;")
sText = Replace(sText, "'" , "&apos;")
sText = Replace(sText, """", "&quot;")
XMLEncode = sText
End Function
%>



或者

<%
Public Function XmlEncode(strText)
Dim aryChars
aryChars = Array(38, 60, 62, 34, 61, 39)
Dim i
For i = 0 To UBound(aryChars)
strText = Replace(strText, Chr(aryChars(i)), "&#" & aryChars(i) & ";")
Next
XmlEncode = strText
End Function
%>


标签:
0
投稿

猜你喜欢

  • 一文搞懂Python中列表List和元组Tuple的使用

    2022-10-09 02:24:58
  • Python import与from import使用及区别介绍

    2022-05-17 12:09:19
  • Python的Flask框架中的Jinja2模板引擎学习教程

    2022-05-28 10:26:08
  • asp连接各种数据库代码

    2008-03-11 11:16:00
  • sqlserver2017共享功能目录路径不可改的解决方法

    2024-01-17 13:58:26
  • Goland 关闭自动移除未使用的包操作

    2024-05-21 10:23:23
  • VScode中不同目录间python库函数的调用

    2021-03-16 00:24:38
  • 怎么让别人看不到网页源代码

    2008-03-21 13:06:00
  • Python实现统计代码行的方法分析

    2023-10-15 13:08:44
  • 吐血推荐珍藏的Visual Studio Code插件(推荐)

    2023-02-09 08:58:31
  • 使用TFRecord存取多个数据案例

    2023-07-14 22:26:34
  • Thinkphp5.0 框架实现控制器向视图view赋值及视图view取值操作示例

    2024-05-03 15:51:16
  • C# 操作 access 数据库的实例代码

    2024-01-28 15:05:11
  • python: 自动安装缺失库文件的方法

    2023-08-30 05:42:38
  • 形象化的reflow

    2008-06-08 13:33:00
  • python基础教程项目二之画幅好画

    2023-09-10 05:06:32
  • python+Word2Vec实现中文聊天机器人的示例代码

    2023-08-04 13:11:29
  • sql server2008调试存储过程的完整步骤

    2024-01-22 04:12:57
  • go HTTP2 的头部压缩算法hpack实现详解

    2024-05-21 10:27:37
  • python反转一个三位整数的多种实现方案

    2023-07-03 00:19:06
  • asp之家 网络编程 m.aspxhome.com