I'm using a session to hold a class. In the class are things like first name, last name, Message.
I have information in the first name and last name and on each page i go to i can retrieve that information. Now after the session is created, if i give the message property a value and destroy the session and recreate it, all three properties show up as being populated.
However, when i do a response.redirect the message property is lost but the other two are still there.
I've tried doing response.redirect("PageName.apsx",false) but that has not helped my cause.
Why would the message property be dropped?