Cookie仅在初始页面上设置

时间:2013-09-06 22:44:52

标签: javascript asp.net webforms

我在JavaScript中设置了一个cookie(使用ASP.NET应用程序)。我可以刷新页面,我可以验证cookie是否设置为document.cookie。现在,如果我去任何其他页面,cookie没有设置,但它应该是。我没有设置路径,所以我没有看到为什么它没有出现的任何理由。我已经尝试过Chrome,FF和IE,但没有。

任何想法我可能做错了什么?

更新

这是我用来设置cookie的代码。我也试过jquery.cookie

function Set_Cookie(name, value, expires, path, domain, secure) {
    // set time, it's in milliseconds
    var today = new Date();
    today.setTime(today.getTime());

    /*
    if the expires variable is set, make the correct
    expires time, the current script below will set
    it for x number of days, to make it for hours,
    delete * 24, for minutes, delete * 60 * 24
    */
    if (expires) {
        expires = expires * 1000 * 60 * 60 * 24;
    }
    var expires_date = new Date(today.getTime() + (expires));

    document.cookie = name + "=" + escape(value) +
        ((expires) ? ";expires=" + expires_date.toGMTString() : "") +
        ((path) ? ";path=" + path : "") +
        ((domain) ? ";domain=" + domain : "") +
        ((secure) ? ";secure" : "");
}

Set_Cookie('cookie1', 'value1', 14);
$.cookie('cookie2', 'value2');

1 个答案:

答案 0 :(得分:0)

我将路径设置为'/'。我拒绝这样做,因为它听起来很愚蠢。应该是默认情况下,对吧?我猜不是。