This is my JavaScript code I use to create my cookie............
document.cookie = "Name=" + Name + ";expires=Friday, 31-Dec-2011 12:00:00 GMT; path/";
I create it in www.example.com/folder/file.html and it works.
But I cant read the cookie from www.example.com/index.html or www.example.com/folder2/file2.html.
What is wrong with my code?
Thanks in advanced