首页 > 学院 > 编程设计 > 正文

如何编写一个过滤掉HTML代码的函数?

2020-06-19 13:52:35
字体:
来源:转载
供稿:网友

如何编写一个过滤掉HTML代码的函数?

<%
Function Filterhtml(strToFilter)
  Dim strTemp
  strTemp = strToFilter
  While Instr(1,strTemp,"<") AND Instr(1, strTemp, ">")
    strTemp = Left(strTemp, Instr(1, strTemp, "<")-1) & Right(strTemp, Len(strTemp)-Instr(1,strTemp, ">"))
  WEnd
  Filterhtml = strTemp
End Function
%>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表