How to Destory Specific session???
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
hi i want to kill / destory session["abc"] only how can i do that?? i dont not want to destory rest of sessions exist on my website except this one...
umerumerumer
-
hi i want to kill / destory session["abc"] only how can i do that?? i dont not want to destory rest of sessions exist on my website except this one...
umerumerumer
mr_muskurahat wrote:
hi i want to kill / destory session["abc"] only how can i do that?? i dont not want to destory rest of sessions exist on my website except this one...
use
Session.Remove("abc")
; And if you are more interested you can read Exploring Session in ASP.Net[^]cheers, Abhijit CodeProject MVP My Recent Article : Exploring Session in ASP.Net