菜鸟问题,谢谢回答
一个跳转语句后有必要再写上一句response.end吗?例如:
dim from_url,serv_url
from_url=cstr(request.ServerVariables("HTTP_REFERER")
serv_url=cstr(request.ServerVariables("SERVER_NAME")
if mid(from_url,8,len(serv_url))<>serv_url then
response.Write("<script>alert('警告!你正在从网站外部提交数据');this.location.href='"&url&"';</script>")
response.End
end if
这句response.end是不是多余?