1

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="假" 超时="240" />

在开发环境中

   <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]
4

0 回答 0