Forum Moderators: open
I have used sessions so far, and never cookies.
The question is, Is there a limit as to how many cookies can I set on a browser?
If more then one,
Can two cookies from the same server ever conflict with each other? I am running into a 500 error and I think its bcuz of cookies.
Any help would be appreciated.
Neh
How many cookies can I set on a browser?
The specs say the following:
- 300 total cookies
- Each cookies should be a maximum of 4 kilobytes, where the name and the Cookie Value combine to form the 4 kilobyte limit.
- 20 cookies per server or domain. (note that completely specified hosts and domains are treated as separate entities and have a 20 cookie limitation for each, not combined)
I am running into a 500 error and I think its bcuz of cookies
I don't know about ASP (VB), but with PHP this is made easy by using the serialize / unserialize functions.
If VB doesn't provide similar functions it should be a relatively straight forward matter to do a string split on some appropriate delimiter and do it yourself.