我如何读取 web.config 中的会话状态信息
我在 web.config 中配置了会话状态。
<sessionState cookieless="AutoDetect" timeout="5" sqlConnectionString="....."/>
现在,我想从代码隐藏中了解超时和 sqlConnectionString。请帮我。
I configured session state in web.config.
<sessionState cookieless="AutoDetect" timeout="5" sqlConnectionString="....."/>
Now, I want to know timeout and sqlConnectionString from code-behind. Please, help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Session.Timeout 来了解超时值。
然而,更好的方法是使用配置API来读取配置。在这种情况下,请使用下面给出的代码来获取对 会话的引用状态配置,然后使用诸如 SqlConnectionString 和超时 查找必要的配置值。
You can use Session.Timeout to know timeout value.
However, better way is to use configuration API to read configuration. In this case, use code given below to get reference to session state configuration and then use properties such as SqlConnectionString and Timeout to find the necessary configured values.
您可以使用此代码
You can use this code