IT码农库

您当前所在位置:首页 > 网络编程 > ASP编程

ASP编程

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

网络 1970-01-01ASP编程8152
这篇文章主要介绍了ASP中限制某些字符留言评论,原理就是通过instr函数查找。感觉很简单,写起来还是有点手生,感觉阿会南
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
大图广告(830*140)