我用Fomrs认证,用下面的代码将cookie的失效时间设置为3天            if( ValidateUser( txtUserName.Text , txtPassword.Text ))
            {
                HttpCookie authenticationCookie=FormsAuthentication.GetAuthCookie(txtUserName.Text,true);
                authenticationCookie.Expires=DateTime.Now.AddDays(3);//3天
                Response.Cookies.Add(authenticationCookie);
        Response.Redirect(FormsAuthentication.GetRedirectUrl(txtUserName.Text,true));
            }但是实际运行结果是:cookie的失效时间仍然是30分钟(这个是我在web.config中设置的),而不是3天。为什么那?该如何解决,请指教,谢谢