Reputation: 83
Pls Help me, In my application I am storing some values in session. When I host the application in the server and store the session values in a page and redirect to another site and returning back to the domain I am unable to retrive the session values, but If I do the same in local host server, I am getting all the session values back, can anybody explain me the reason...???? I have set session mode as Inproc..
Upvotes: 1
Views: 104
Reputation: 49245
ASP.NET session (by default) is cookie based - so you need to check two things:
Upvotes: 1