假设单页上有多个会话,并且我想要清除一个会话的值,那么我该如何实现呢? Session.clear()会清除所有会话的值,还是会因为多个会话而产生歧义?
答案 0 :(得分:8)
您一次只能为一个用户创建一个会话。如果您清除会话,则只清除访问该页面的当前用户的会话,而不是每个人。
答案 1 :(得分:2)
Session.Clear(); // Remove all keys and values from the session state collection of current user
Session.Remove("SessionName"); //Will remove particular session variable of current user