What is the difference between Session.Abandon() and Session.Clear()

前端 未结 10 948
陌清茗
陌清茗 2020-11-28 03:36

What is the difference between destroying a session and removing its values? Can you please provide an example demonstrating this?

I searched for this question, but

10条回答
  •  醉梦人生
    2020-11-28 03:58

    Clearing a session removes the values that were stored there, but you still can add new ones there. After destroying the session you cannot add new values there.

提交回复
热议问题