I have a list that I put in session:
Session.Add(\"SessionList\", mylist);
How to retrieve it back from the session?
liek this...
var list = Session["SessionList"] as List;
or you can cast like this
var List1 = (List)Session["SessionList"];