我在ColdFusion 10中遇到客户端变量的问题。当我在一个页面中创建客户端变量时,它只影响该页面而我无法访问应用程序中另一个页面中的变量。这是来自Application.cfc的代码:
this.Name = "test";
this.ApplicationTimeout = CreateTimeSpan(0,0,0,0);
this.ClientManagement= "yes";
this.ClientStorage = "clientstorage";
this.SessionManagement = true;
this.SessionTimeout = CreateTimeSpan( 0, 0, 20, 0 );
this.SetClientCookies = "yes";
this.SetDomainCookies = "no";
this.ScriptProtect = "all";
答案 0 :(得分:0)
我在网站上遇到同样的问题,并使用setdomaincookies =“yes”修复它