I have a Session object
Session["MyListObjects"] = null;
When a user hits a button I want to creat a List<string> object and add to session object.
Let's say if user hits the button 10 times, I would get 10 List<string> ojects and add to Session["MyListObjects"]
and
Finally I want to read all the List<string> objects from the session object.
Please let me know how to do that.
Thanks,
Session["MyListObjects"] = null;
When a user hits a button I want to creat a List<string> object and add to session object.
Let's say if user hits the button 10 times, I would get 10 List<string> ojects and add to Session["MyListObjects"]
and
Finally I want to read all the List<string> objects from the session object.
Please let me know how to do that.
Thanks,