- 最后登录
- 2025-4-30
- 注册时间
- 2011-9-6
- 阅读权限
- 200
- 积分
- 16007
- 真实姓名
- 二亩地
|
- <!--判断开始-->
- <%
- dim urlstr
- urlstr=request.servervariables("http_referer")
- if urlstr<>"" then
- if instr(urlstr,"http://www.baidu.com")=1 or instr(urlstr,"http://www.ermudi.cn")=1 then
- %>
- <%
- response.Cookies("guanggao")="1"
- response.cookies("guanggao").expires=dateadd("d",1,datevalue(date))
- %>
- <%
- end if
- end if
- %>
- <!--判断结束-->
复制代码
- <%
- dim urlstr
- urlstr=request.servervariables("http_referer")
- if urlstr<>"" then
- if (instr(urlstr,"http://www.baidu.com")=1 or instr(urlstr,"http://www.ermudi.cn")=1) then
- if request.Cookies("guanggao")="" then
- %>
- <%
- response.Cookies("guanggao")="1"
- response.cookies("guanggao").expires=dateadd("d",1,datevalue(date))
- %>
- <%
- end if
- end if
- end if
- %>
复制代码
- <%
- if request.Cookies("guanggao")="" then
- %>
- <!--开始广告-->
- <!--结束广告-->
- <%
- response.Cookies("guanggao")="1"
- response.cookies("guanggao").expires=dateadd("d",1,datevalue(date))
- end if
- %>
复制代码
|
|