作者:我不是不是小受 | 来源:互联网 | 2023-01-01 05:49
—-想了解更多的linux相关异常处理怎么解决关注
<%
Function HTMLDecode(sText)
Dim I
sText = Replace(sText, “&” , Chr(38))
sText = Replace(sText, “”””, Chr(34))
sText = Replace(sText, “<” , Chr(60))
sText = Replace(sText, “>” , Chr(62))
sText = Replace(sText, ” “, Chr(32))
For I = 1 To 255
sText = Replace(sText, “&#” & I & “;”, Chr(I))
Next
HTMLDecode = sText
End Function
%>
—-想了解更多的linux相关异常处理怎么解决关注<编程笔记>