I am trying to set a cookie equal to the value of a parameter that may or may not be passed in via the querystring. If the parameter is in the querystring, it will set the cookie equal to the value of the param, if not set it equal to the http_referer value. I have written code to handle this but am finding that if I use a param called Id, (i.e it sets a cookie for Id=123. However if I use a lowercase id as the param,
(i.e it is not overwriting hte existing Id cookie, it is simply adding another entry to it using the lowercase id value. Are params case sensitive in regards to cookies? Must I enforce the use of Id over id? This should not be a major issue since most url's with parameters will be hit via hyperlinks, however I ran across this and wondered if they were case sensitive.
Thanks...
(i.e it is not overwriting hte existing Id cookie, it is simply adding another entry to it using the lowercase id value. Are params case sensitive in regards to cookies? Must I enforce the use of Id over id? This should not be a major issue since most url's with parameters will be hit via hyperlinks, however I ran across this and wondered if they were case sensitive.
Thanks...