嗨,我正在使用代码来获取推荐 URL,如下所示:
sRef = encode(Request.ServerVariables("HTTP_REFERER"))
上面的代码得到以下 URL: http ://www.rzammit.com/pages/linux-form.asp?adv=101&loc=349&websync=233344-4555665-454&ptu=454545
从该网址我只想获取 ADV 和 LOC(Request.querystring 不起作用,因为这是一个在提交表单时运行的脚本)
因此,简而言之,通过使用推荐 URL,我想获取 adv 和 loc 参数的值。
请帮助我如何做到这一点?
以下是我目前正在使用的代码,但我遇到了问题。loc 之后的参数也显示出来。我想要一些动态的东西。adv 和 loc 的值也可以更长。
<%
sRef = Request.ServerVariables("HTTP_REFERER")
a=instr(sRef, "adv")+4
b=instr(sRef, "&loc")
response.write(mid(sRef ,a,b-a))
response.write("<br>")
response.write(mid(sRef ,b+5))
%>