0

您好,我想知道是否有人可以帮助我。我正在尝试为我的网站组合一个侧边栏导航。基本上我试图让它记住每个用户查看的产品,然后向他们显示 3 个最新的产品。我不确定哪种语言最适合它以及如何解决这个问题。

例子:

您访问过:

第 1 项,第 2 项,第 x 项

提前致谢。

4

1 回答 1

0

将它(最后访问的页面)保存在 cookie 中

在经典的 ASP 上。当然,在每个页面上,您都应该存储以前访问过的页面(实际上是当前页面)

<%@LANGUAGE=VBSCRIPT%>
<%
    '### Get previously visited page
    Response.Write "Last page with params " & Request.Cookies("LastPageWithParams")

    '### Store previously (current) visited page
    Response.Cookies("LastPageWithParams") = Request.ServerVariables("PATH_INFO") & "?" & Request.QueryString

    '### Set expiration as we needed
    Response.Cookies("LastPageWithParams").Expires=#Jan 1,2015#
%>
于 2014-08-18T18:55:16.903 回答