如何过滤HTML代码
如题
------解决方案-------------------- <%=CleanHTML(left(rs( "content "),73))%>
试试
------解决方案--------------------dim str
str=rs( "content ")
if isnull(str)=true then
response.write cleanhtml(left(str,73))
end if
先判断一下数据是否为空,再调用看看
------解决方案--------------------还有什么样子没有解决??