主页 > 知识库 > asp中实现清除html的函数

asp中实现清除html的函数

热门标签:科大讯飞语音识别系统 Linux服务器 团购网站 银行业务 电子围栏 服务器配置 阿里云 Mysql连接数设置

这个函数是必需要的,很多黑客来捣乱,黑掉数据库,会注入大量的病毒js,在存储和展示文本数据的时候,使用此函数过滤一下,可避免不少麻烦

clearhtml代码

'清除HTML代码
function clearhtml(content)
  content=replacehtml("#[^>]*;","",content)
  content=replacehtml("/?marquee[^>]*>","",content)
  content=replacehtml("/?object[^>]*>","",content)
  content=replacehtml("/?param[^>]*>","",content)
  content=replacehtml("/?embed[^>]*>","",content)
  content=replacehtml("/?table[^>]*>","",content)
  content=replacehtml("nbsp;","",content)
  content=replacehtml("/?tr[^>]*>","",content)
  content=replacehtml("/?th[^>]*>","",content)
  content=replacehtml("/?p[^>]*>","",content)
  content=replacehtml("/?a[^>]*>","",content)
  content=replacehtml("/?img[^>]*>","",content)
  content=replacehtml("/?tbody[^>]*>","",content)
  content=replacehtml("/?li[^>]*>","",content)
  content=replacehtml("/?span[^>]*>","",content)
  content=replacehtml("/?div[^>]*>","",content)
  content=replacehtml("/?th[^>]*>","",content)
  content=replacehtml("/?td[^>]*>","",content)
  content=replacehtml("/?script[^>]*>","",content)
  content=replacehtml("(javascript|jscript|vbscript|vbs):","",content)
  content=replacehtml("on(mouse|exit|error|click|key)","",content)
  content=replacehtml("\\?xml[^>]*>","",content)
  content=replacehtml("\/?[a-z]+:[^>]*>","",content)
  content=replacehtml("/?font[^>]*>","",content)
  content=replacehtml("/?h[^>]*>","",content)
  content=replacehtml("/?u[^>]*>","",content)
  content=replacehtml("/?i[^>]*>","",content)
  content=replacehtml("/?center[^>]*>","",content)
  content=replacehtml("/?center[^>]*>","",content)
  content=replacehtml("/?nobr[^>]*>","",content)
  content=replacehtml("/?clk[^>]*>","",content)
  content=replacehtml("/?muti[^>]*>","",content)
  content=replacehtml("/?/option[^>]*>","",content)
  content=replacehtml("/?o[^>]*>","",content)
  content=replacehtml("/?strong[^>]*>","",content)
  clearhtml=content
end function

replacehtml代码

function replacehtml(patrn,strng,content)  
  if isnull(content) then
    content=""
  end if
  set regex=new regexp
  regex.pattern=patrn
  regex.ignorecase=true
  regex.global=true
  replacehtml=regex.replace(content,strng)
end function

使用方法:

复制代码 代码如下:

%=clearhtml("div id="CodeTip">h2>分享代码提示(2)/h2>ul>li style="font-weight: bold; color: rgb(170, 0, 0);">添加完代码必须点击“完成并查看”生效/li>li>准确的编程语言,可正确对代码语法着色/li>li>输入简单几个字的代码片段说明/li>li>上传源码文件时无需再输入说明/li>li>非程序相关文件将直接删除,严重封帐号/li>li>图片仅用来上传截图之类的文件,勿作他途/li>/ul>/div>")%>

以上就是本文所述的全部内容了,希望大家能够喜欢。

您可能感兴趣的文章:
  • ASP 时间函数及如何获取服务器时间的写法
  • Asp Split函数之使用多个分割符的方法
  • asp与js的类型转换函数介绍
  • asp中的Rnd 函数
  • ASP转换格林威治时间函数DateDiff()应用
  • ASP移动文件函数movefile权限不足的替代方法
  • ASP中实现的URLEncode、URLDecode自定义函数
  • asp实现获取MSSQL数据库表指定条件行数的函数
  • asp实现截取字符串函数
  • ASP实现强制图片下载函数
  • ASP函数大全解析

标签:衡水 江苏 衢州 萍乡 枣庄 蚌埠 大理 广元

巨人网络通讯声明:本文标题《asp中实现清除html的函数》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266