I have a list that I put in session:
Session.Add(\"SessionList\", mylist);
How to retrieve it back from the session?
Try this:
Var sessionlist = (List) Session["CustomerSessionList"];