I have a large string that I want to save in a cookie, however I don't know what the best practices are for max string length per cookie, and max cookie count.

What logic should I use to split the string and later combine a set of cookies?

(Microsoft ADFS and perhaps Siteminder do this technique so I would be interested in what thier implementation is)

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Cookies is something that handle by browsers, so each browser have different limits.

Split the cookie can help only temporary because there is also a limit to the total cookies data for each site, but also you add an overhead on the data transfer on each page

The limits for each browser per cookie:
Internet Explorer handle max cookie of about 3904 bytes
Mozilla Firefox handle max cookie of about 3136 bytes

When I make some tests on Chrome, the chrome crash inside with a large cookie, and no message appear nether the page.

Now both Netscape and Microsoft have measures in place that limit the number of cookies base on RFC 2109 limitations of total cookies count to 300 ref: http://www.cookiecentral.com/faq/#2.5
This is done for many reasons, one of them is the hacking, imaging a site that go and upload a full video on the cookies :) and full up your hard disk with it...

I say that the best practices is to keep a small cookie reference on the browser, and connect it with the real data on the server. The smaller the better from all aspects.

How to make your tests for the cookie, you can make a code like that.

if(Request.Cookies["cookieTest"] == null)
    Request.Cookies["cookieTest"].Value = "more text into cookie";
else
    Request.Cookies["cookieTest"].Value += "more text into cookie";

// check now the size
Responce.Write(Request.Cookies["cookieTest"].Value.Length);

My experience show many random unpredicted problems when you try to use uncontrolled large data on cookies. I have hear many times support say: Clear your cookies and try again :)

link|improve this answer
Thank you, you do understand my concept. but I'd be intestested in finding out the lowest common denominator of settings and values. I'd like to keep in mind mobile phones (blackberry, iphone, ipad) and different versions. – makerofthings7 Jan 5 '11 at 20:34
@makerofthings7 I do not know about mobile phones because I do not have one to make test at this time. How ever maybe if you search on google ? The standards are here ietf.org/rfc/rfc2109.txt – Aristos Jan 5 '11 at 22:12
I was under the impression that many devices don't consistently adhere to a standard. Can I actually rely on an RFC for the practical implementation of cookies? From all I've read, support has been spotty at best. – makerofthings7 Jan 5 '11 at 23:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.