Thursday, September 18th, 2008

Using the Cookie Toolbox

The cookie toolbox that I created goes well beyond just being able to read, write, and delete cookies. It contains code making it easy to save entire arrays into a single cookie and to be able to easily update the array that you have stored in the cookie. This tutorial describes many of the additional [...]

Wednesday, September 17th, 2008

Passing Parameters using Cookies

Handling cookies from JavaScript is much easier once you have written functions that take care of reading, writing, and deleting cookies. To provide maximum flexibility in being able to use cookies I wrote a set of these functions that allows entire arrays of data to be stored within a single cookie if you need to [...]

Friday, July 4th, 2008

A Cookie ToolBox

Cookies are the main way of retaining information between one web page and the next and the only way to retain information between different browser sessions. Cookies are supported by both JavaScript and server side processing. Cookies are however limited in the amount of data they can store. Each domain can store up to 20 [...]