<%
'ՓύM^V̎
'Ո(j)ՓύݔֶMO
GuestBookTitle=trim(Request.Form("Title")) 'TitleԱݔĘRQ(j)ČHrM
GuestBookConntent=trim(Request.Form("Content")) 'ContentԱݔԃֶΣ(j)ČHrM
BadWord="Իˎ@ϲ@LL@֙C` @СӰ@ҕl@Ӱ@Ӱ@֧ۘ@֧@ o Ԫ@LL֮@ˮ@ua(chn)h@Ӱ@*݆*@**@ͻ i@ ݆ @ u"
'´azyǷҪεַ
'ՈҪ
SplitBadWords=split(BadWord,"@")
for each SplitBadWord in SplitBadWords 'ѭh(hun)xÿһǷַ
if instr(GuestBookTitle,SplitBadWord)<>0 then 'ДԘ}ǷǷַ
Response.Write("ݔăаǷַ,ֹύ")
Response.end()
exit for
end if
if instr(GuestBookConntent,SplitBadWord)<>0 then 'ДԘ}ǷǷַ
Response.Write("ݔăаǷַ,ֹύ")
Response.end()
exit for
end if
next
%>