Cookie正在重置bigrock中共享主机上的每个请求。请建议如何解决此问题。
它在开发环境中运作良好。不确定为什么这个问题在托管后发生。
任何帮助?
请在下面找到Cookie和身份验证详细信息
在开发环境中
<authentication mode="Forms">
<forms name="xxxx.AUTH" loginUrl="~/login" protection="All" timeout="43200" path="/" requireSSL="false" slidingExpiration="true" />
</authentication>
在托管环境中
<authentication mode="Forms">
<forms name="AUTH" loginUrl="~/login" protection="All" timeout="43200" path="/" requireSSL="false" slidingExpiration="true" cookieless="UseCookies" domain=".xxxxx.com" />
</authentication
在发展环境中
<sessionState mode="InProc" />
在托管环境中
<sessionState stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless =“false”timeout =“240”/&gt;
在开发环境中
<httpRuntime targetFramework="4.5" maxRequestLength="1536000" executionTimeout="5400" maxQueryStringLength="16384" />
在托管环境中
<system.web>
<httpRuntime maxRequestLength="1536000" executionTimeout="14400" maxQueryStringLength="16384" />
<trust level="Medium" />
<machineKey validationKey="B8095B36FC8FEBF6F93DF08E976E88DE969EB2157706A0F0A6DD67D1C1EF5DAB6035B2613EC05C9FF3F7A531D7462F0EED44453C4626A9E1FDBCD596AEFD1BB3" decryptionKey="512BBBCD3B92652675334E317B7F3FBF9F36112D4F23091C67B1479CE1E96976" validation="SHA1" decryption="AES" />
</system.web>
Fiddler日志信息
![Fiddler Info][1]