当前位置:Gxlcms > ASP > ASP中限制某些字符留言评论

ASP中限制某些字符留言评论

时间:2021-07-01 10:21:17 帮助过:43人阅读

Sub CheckCanSubmit(str)
 Dim connt,connts
 connt="六合彩,免费电影,安利,http,www,<a" 
 connts = split(connt,",") 
 For each glword in connts 
  if instr(str,glword)<>0 then 
  Response.Write("<script>alert('操作非法');window.history.go(-1);</script>")
  Response.End()
  end if 
 next 
End Sub

人气教程排行