%'=================ASP代码开始====================
Dim cID, articleKeys, sType
articleKeys = Request.Querystring("Keys")
'============安全过滤函数===========
Function GVsafety(text)
Dim temp, temp1
temp = ",|'|}|{|)|(|*|^|%|$|#|@|!|~|`|>|<|&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;"
temp1 = split(temp,"|")
if not isNull(text) or text <> "" then
for each temp in temp1
text = Replace(text,temp,"")
next
GVsafety = text
end if
End Function
articleKeys = GVsafety(articleKeys)
'==========安全过滤函数结束===============
'====以上安全过滤函数为创建模版必须的函数,请模版设计者格外注意,此处不可或缺。=========
cID = Request.Querystring("cID")
if not isNumeric(cID) then
cID = 0
else
cID = Int(cID)
end if
sType = Request.Querystring("sType")
if not isNumeric(sType) then
cID = 0
else
cID = Int(sType)
end if
'=================ASP 代码结束=============== %>