I want to store a Dictionary Object into a Session. Is there a way to do
that without going through each key?
I want
Session("One") = DictOne
Not
Session("One-Part1") = DictOne("Part1")
Session("One-Part2") = DictOne("Part2")
Session("One-Part3") = DictOne("Part3")
Or is there a better way??? I'm open to dumping the Dictionary Object
for something else.
--
Anthony Baratta