判断用户是否通过点击你的网站的方法来发帖-这样如果要发广告帖,起码不能用软件来实现了,下面是ASP过滤代码,比较简单:
web_url.asp
Dim web_url,web_yes '这里一定要先Dim变量,不然会出错,原因是动网在conn.asp文件里面做限制,一定要声明变量
web_url=request.ServerVariables("HTTP_REFERER") '得出来路
'判断来路是否合法
if left(web_url,24)="http://www.lyglk.com" then web_yes=1
if left(web_url,20)="http://lyglk.com" then web_yes=1
if left(web_url,24)="http://bbs.lyglk.com" then web_yes=1
if web_yes<>1 then
response.write "<a href='http://lyglk.com'>来自非法的URL,请在本站进行操作</a>"
response.End
end if
然后把web_url.asp 分别include 到login.asp和savepost.asp就可以,注意,要include的时候,要放在<!--#include file="conn.asp"-->下面,不然会出错,例如,login.asp
<!--#include file="Conn.asp"-->
<!-- #include File="weburl.asp" -->
<!--#include file="inc/const.asp"-->