补丁方法:
找到conn.asp文件
'过滤非法字符
function chktopic(str)
if str<>"" then
chktopic=replace(str,"'","''")
end if
end function
找到这一段代码,修改他为
'过滤非法字符
function chktopic(str)
if str<>"" then
chktopic=replace(str,"'","''")
chktopic=replace(str,"and","!!")
chktopic=replace(str," ","!!")
chktopic=replace(str,"%20","!!")
end if
end function
【责任编辑 李旭海】