如何配置 SQL Server 来管理 ASP.NET 会话
我需要知道如何配置 .config 来管理 SQL Server 中的会话状态
I need to know how to configure the .config to manage Session state in SQL Server
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先您需要创建一个会话数据库。为此:
其中 ServerName 是您的服务器名称。
这将创建这个数据库 ASPState
现在在 web.config 上的配置
上添加这句话
在sqlCommandTimeout="7200" = 2hours 和 timeout="120" = 2hours
如果您需要有关 aspnet_regsql 的更多选项,您可以看一下 此处
First you need to create a Session database. In order to do this:
Where ServerName is your server name.
This will create this database ASPState
Now the configuration on the web.config
Add this sentence over
sqlCommandTimeout="7200" = 2hours and timeout="120" = 2hours
If you need more options regarding aspnet_regsql you can take a look HERE
其他选项:http://msdn.microsoft.com/en-us/library /ms972429.aspx
Additional options here: http://msdn.microsoft.com/en-us/library/ms972429.aspx