欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP常用函数:HTMLDecode

程序员文章站 2023-12-04 18:14:40
<% function htmldecode(stext)     dim i   &...
<%
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
%>