| Author |
cookie question
|
Stan dmello
Greenhorn
Joined: Jul 03, 2005
Posts: 1
|
|
Hi, I was wondering if we can set the cookie for the domain other than our own domain. I mean, if our domain is abc.com then can we use setDomain(".xyz.com") to set cookie for xyz.com? Thanks, -Stan
|
 |
Scott Selikoff
Saloon Keeper
Joined: Oct 23, 2005
Posts: 3666
|
|
Some searching from google reveals the answer: "Normally, the browser returns cookies only to the same hostname that sent them. You can use setDomain method to instruct the browser to return them to other hosts within the same domain. To prevent servers from setting cookies that apply to hosts outside their domain, the specified domain must meet the following two requirements: It must start with a dot (e.g., .prenhall.com); it must contain two dots for noncountry domains like .com, .edu, and .gov; and it must contain three dots for country domains like .co.uk and .edu.es."
|
My Blog: Down Home Country Coding with Scott Selikoff
|
 |
 |
|
|
subject: cookie question
|
|
|