欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-04-15 10:32:27
sub checkcansubmit(str) dim connt,connts connt="六合彩,免费电影,安利,http,www,
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