How to write all data in a session to the [] line as well as write data in the [] line to a session
I am using ASP.net
. I need to copy all session data (both session variables and session request variables) into String []
. How can i do this?
Also I need the opposite condition.
How can I do this using serialization concepts
+1
balaweblog
source
to share
1 answer
Serialization and deserialization should do the trick.
You can look here for a serialization tutorial.
+2
Burkhard
source
to share