Apparently most web browsers have a limit of 20 cookie values per domain name. We are redesigning our website and wanted to switch to using more cookies than session variables. Is there any way to use more than the maximum 20 values (like setting a cookie to a different domain name or something)?
Also, how does the browser determine which cookie value to replace if a domain exceeds 20 values? Is it just FIFO (First In First Out)? Is there any way to lock a cookie value or prevent it from being overwritten? If it is FIFO, I might have to reset that saved cookie in any code that might potentially overwrite that value.
Also, how does the browser determine which cookie value to replace if a domain exceeds 20 values? Is it just FIFO (First In First Out)? Is there any way to lock a cookie value or prevent it from being overwritten? If it is FIFO, I might have to reset that saved cookie in any code that might potentially overwrite that value.