Reading Session Classes

  • Thread starter Thread starter MeDhanush
  • Start date Start date
M

MeDhanush

I'm trying to read all the session varialbes stored in Session, they
could be simple integers to classes including datasets.

When I do Session.Contents, it just gives you class name only.
What is the way to read each class along with members, stored in
Session ?

Kishore
 
Dim MyClass As SomeClass = CType(Session("MyClass"), SomeClass)

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top