Classic ASP: Multiple ASPSESSIONID in cookies

后端 未结 7 1070
悲&欢浪女
悲&欢浪女 2020-12-01 21:07

I have a problem with a classic asp page and I just cannot solve it since 3 days.

The page is working with Sessions - sometimes it happens that the ASPSESSIONID cook

7条回答
  •  青春惊慌失措
    2020-12-01 22:01

    You have assigned a value in your session of the user. Try to fetch your fetch your session like this and assign different unique values to every user

    <% 
    Session("test") = "test value" 
    a=Session("test")
    response.Write(a)
    %>
    

提交回复
热议问题