views:

120

answers:

1

I using an ASP.net I need to copy all the session data (both session variables and session request variables) to string []. How to do this.

Also i need the reverse condition.

How to do this in serialization concepts

+2  A: 

Serialization and Deserialization should do the trick.

You can look here for a tutorial on serialization.

Burkhard