I have a program that writes in the cookie on a page, the redirect,
SetCookie(key,value);
Response.Redirect("SecondPage.aspx");
and tries to read the cookie on the second page.
var value = GetCookie(key);
As simple as that! It works fine on IE/FF/Chrome, but not in Apple's Safari!
This is how the cookie value looks line in IE/FF/Chrome:
flyerName=1111+test+road%2c+LS%2c+MO&flyerPersonId=1241BST34&flyerTemplate=Vertical.pdf&flyerListing=6666&flyerOrg=TESTORG
and in Safari:
flyerName=1111+test+road
apparently Safari has truncated the string after %2C which is comma(,) in ascii table!
P.S. I've seen this post, but it didn't help me.