编程语言
首页 > 编程语言> > javascript – 如何从经典ASP中获取历史记录中的上一页?

javascript – 如何从经典ASP中获取历史记录中的上一页?

作者:互联网

有没有办法可以获得用户在经典ASP中的上一页?我在JavaScript中寻找相当于history.go(-1)的东西.

解决方法:

根据您的需要,您可以使用:

Request.ServerVariables("HTTP_REFERER");

Returns a string containing the URL of
the page that referred the request to
the current page using an <a> tag. If
the page is redirected, HTTP_REFERER
is empty.

通常,如果我需要知道用户来自哪里,我会在查询字符串或表单变量中明确地设置它.

标签:javascript,asp-classic
来源: https://codeday.me/bug/20190726/1546725.html