4 KB per cookie. 20 cookies per domain in Internet Explorer 6 (although an update was shipped increasing this limit to 50). This means the common denominator is 80 KB of data, split across 20 chunks (clumsy at best).
Generally it's recommended to preserve state on the server, and use cookies only for session tracking. They're sent along with every request, and you really don't want dozens of KB of data crossing the wire on every server call.
If you do want to keep state on the client, and you can use JavaScript to do it, there are options. The PersistJS library implements all of them (as a convenient key/value store). Dojo storage is another well known cross-browser local storage library.
A short summary of storage options:
- localStorage / globalStorage: Firefox 2+, Chrome 4+, Safari 4+, Internet Explorer 8+. 5 MB per domain.
- userData: Internet Explorer 5.5+. 64 KB per domain in the restricted zone, 128 KB per domain in the internet zone.
- Flash 8 persistent storage: any browser with Flash 8+. 100 KB, more with user permission.
- Google gears: any browser with the Gears plug-in. 2 GB, requires explicit user approval.
So, generally it depends on your use case:
- Less than 10 KB, I would use cookies. Transparent to the user, and universally supported.
- Between 10 KB and a 100 KB, a combination of userdata, localstorage and Flash might be what you need to deliver a transparent solution across all common browsers. I just replaced cookies with such a solution in the web applications I develop, and it works great.
- 100 KB and up: Flash or Gears. Either way the user has to explicitly authorize you to store data. Gears is easiest to use, as it provides a SQL API.
Update (2011/03/27):
Gears is on its way out, so don't rely on it. There is native SQL storage support on a number of browsers, but it is considered deprecated, so it would be bad form to rely on that also. The future for client-side storage is IndexedDB, which is something to keep an eye on, but not yet finalized at this point.