I want to retrieve a Session ID for a particular Session variable in C#.
Session["OrderDetailList"] = OrderDetailsList;
What i am trying is that I want to save List in a session and also want to store its Session ID in cookie.
Also When I retrieve Session ID from cookie then i can able to save the value of Session variable having Session ID retrieve from cookie.
How can we do that?
Beside this i would also recommend to checkout this good article
Exploring Session in ASP.NET