Click here to Skip to main content
15,886,049 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi people
i have a question.
recently im develop a WebApp, all its fine, but the problem is
when i disabled the cookies manualy from a tablet (Android),Ipad2 AND iphone 4s ,Just for Security of the customer.
The case is when i Test the webapp and i trying to create a SESSION with VB.NET, throwme an Error,
but when i enable again the cookies the SESSION Variables is created without Errors
Can this be possible?

thanks in advance.
Posted

1 solution

The default value for Session is to store in cookies. So, yes, the session id is in the cookie sent to the client. You can have the session id encrypted in the querystring and your code does not change at all. You just have to change the web.config setting.

See http://msdn.microsoft.com/en-us/library/ms178581.aspx and other articles on MSDN.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900