如何配置 SQL Server 来管理 ASP.NET 会话

发布于 2024-10-15 10:12:51 字数 46 浏览 1 评论 0原文

我需要知道如何配置 .config 来管理 SQL Server 中的会话状态

I need to know how to configure the .config to manage Session state in SQL Server

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

漫漫岁月 2024-10-22 10:12:51

首先您需要创建一个会话数据库。为此:

  1. 查找 aspnet_regsql.exe
  2. 运行此命令 aspnet_regsql.exe -S [ServerName] -E -ssadd -sstype p

其中 ServerName 是您的服务器名称。

这将创建这个数据库 ASPState

现在在 web.config 上的配置

上添加这句话

<sessionState allowCustomSqlDatabase="false" mode="SQLServer" sqlCommandTimeout="7200" sqlConnectionString="Server=SERVERNAME;User ID=User;Password=Password;" timeout="120" />

在sqlCommandTimeout="7200" = 2hours 和 timeout="120" = 2hours

如果您需要有关 aspnet_regsql 的更多选项,您可以看一下 此处

First you need to create a Session database. In order to do this:

  1. Look for the aspnet_regsql.exe
  2. Run this command aspnet_regsql.exe -S [ServerName] -E -ssadd -sstype p

Where ServerName is your server name.

This will create this database ASPState

Now the configuration on the web.config

Add this sentence over

<sessionState allowCustomSqlDatabase="false" mode="SQLServer" sqlCommandTimeout="7200" sqlConnectionString="Server=SERVERNAME;User ID=User;Password=Password;" timeout="120" />

sqlCommandTimeout="7200" = 2hours and timeout="120" = 2hours

If you need more options regarding aspnet_regsql you can take a look HERE

樱花细雨 2024-10-22 10:12:51
<configuration>
  <sessionstate 
      mode="stateserver"
      cookieless="false" 
      timeout="20" 
      sqlconnectionstring="data source=127.0.0.1;user id=<user id>;password=<password>"
      server="127.0.0.1" 
      port="42424" 
  />
</configuration>

其他选项:http://msdn.microsoft.com/en-us/library /ms972429.aspx

<configuration>
  <sessionstate 
      mode="stateserver"
      cookieless="false" 
      timeout="20" 
      sqlconnectionstring="data source=127.0.0.1;user id=<user id>;password=<password>"
      server="127.0.0.1" 
      port="42424" 
  />
</configuration>

Additional options here: http://msdn.microsoft.com/en-us/library/ms972429.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文