If I store a String value in my Session variable, do I need to Serialize / Deserialize it?
I read that when you use in your web.config
you need to serialize before you can store the value in session variable
and you would then deserialize when you retrieve the value.
I wonder if for example, you just place the string value to a session like:
Session("MyStringVar") = "MyStringValue"
and when you retrieve it, you could just do:
DIm strVal as String strVal = Ctype(Session("MyStringVar"), String)
And also, is the time out specified for that is 60, is it in minutes or hours?
Thanks