Click to See Complete Forum and Search --> : Custom Cookies in Web Application
TimTree
02-07-2007, 06:56 AM
Hi Guys,
When I create a cookie currently it creates it in the standard format.
Is it possible to create custom cookies, in effec a text file designed by me in a format that I want ?
This would mean stripping out the cookie value names etc.
I don't think this is posible but thought it was worth asking.
Thanks
Tim.
Ribeyed
02-07-2007, 12:53 PM
a cookie is a small text file of information that certain Web sites attach to a user's hard drive while the user is browsing the Web site. To customise this all you do is add your own values to it. Can't see what else you would want to do with it?
Cstick
02-07-2007, 10:00 PM
Don't make the value too large though, most browsers will not accept a cookie if it exceeds a certain size.
Are you really certain you should do what you want though? A cookie generally only contains non peronally identifying information, instead it contains a semi-random key for identifying a user.
TimTree
02-15-2007, 04:56 AM
I think your both right, after looking into, cookies are not the way forward for this piece of work. Thanks very much for your help though, much appreciated
lmf232s
02-15-2007, 09:41 AM
how about using profiles?
Ribeyed
02-15-2007, 10:06 AM
What are you trying to do? What function are you trying to achieve?