0

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";  
4

1 回答 1

0

我在网站上遇到了同样的问题,并通过使用 setdomaincookies="yes" 修复了它

于 2013-10-29T18:04:26.470 回答