Web.config中sessionState中的stateConnectionString有什么用?
我正在使用 VS 2005 作为 Web 表单。
查看 web.config 我看到一个 stateConnectionString 属性。
- 这真的有必要吗?
- 什么时候需要这个?
- 这是如何使用的?
I'm using VS 2005 for web forms.
Looking at the web.config I see a stateConnectionString attribute.
- Is this really needed?
- When is this needed?
- How is this used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是 sqlConnectionString 属性吗?如果这样做,那么如果您将状态服务器模式设置为 SqlServer 以在网络场场景中使用,则会使用它。它是运行会话状态存储的 Sql Server 的盒子。
Do you mean sqlConnectionString attribute? If you do then it is used if you set the state server mode to SqlServer for usage in a web farm scenario. It is the box running the Sql Server for the session state store.