下段程序的含义是什么?
<%
function ShowBody(str)
str=Replace(str,"<BR>","")
str=Replace(str,"<br>","")
str=Replace(str,chr(34),""")
str=Replace(str,"<","<")
str=Replace(str,">",">")
str=Replace(str,chr(13)+chr(10),"<br>")
str=Replace(str,chr(9)," ")
str=Replace(str," "," ")
showbody=str
end function
%>
里面 "什么意思?
里面是否有错误?