Hello:
In my app, cookies are used to transfer large blocks of text (user comments) from one page to another. I am running across a problem trying to find the smallest maximum number of characters allowed:
a) in a sql db field
b) in an html variable
c) in a cookie.
I'm finding that the size of the cookie is the limiting step. Does a size of approximately 700 characters sound right? On my development server, I can get away with 720 characters, but on the production server I had to reduce that to 700. The html field value is stored in a cookie on page a, where it is input, and is passed back to page b. If the length is > 700, no value is stored in the cookie.
Any ideas?
TIA,
Dan
Dan Walter
Daniel.Walter@uvm.edu
try { succeed(); } catch(E) { tryAgain(); } finally { rtfm(); }
In my app, cookies are used to transfer large blocks of text (user comments) from one page to another. I am running across a problem trying to find the smallest maximum number of characters allowed:
a) in a sql db field
b) in an html variable
c) in a cookie.
I'm finding that the size of the cookie is the limiting step. Does a size of approximately 700 characters sound right? On my development server, I can get away with 720 characters, but on the production server I had to reduce that to 700. The html field value is stored in a cookie on page a, where it is input, and is passed back to page b. If the length is > 700, no value is stored in the cookie.
Any ideas?
TIA,
Dan
Dan Walter
Daniel.Walter@uvm.edu
try { succeed(); } catch(E) { tryAgain(); } finally { rtfm(); }