我如何读取 web.config 中的会话状态信息

发布于 2024-11-14 06:42:41 字数 192 浏览 3 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

浮生未歇 2024-11-21 06:42:41

您可以使用 Session.Timeout 来了解超时值。

然而,更好的方法是使用配置API来读取配置。在这种情况下,请使用下面给出的代码来获取对 会话的引用状态配置,然后使用诸如 SqlConnectionString超时 查找必要的配置值。

using System.Web.Configuration;

...

var sessionSection = (SessionStateSection)WebConfigurationManager.GetSection("system.web/sessionState");

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.

using System.Web.Configuration;

...

var sessionSection = (SessionStateSection)WebConfigurationManager.GetSection("system.web/sessionState");
屌丝范 2024-11-21 06:42:41

您可以使用此代码

Configuration config = WebConfigurationManager.OpenWebConfiguration("~/Web.config");
SessionStateSection section = (SessionStateSection)config.GetSection("system.web/sessionState");

You can use this code

Configuration config = WebConfigurationManager.OpenWebConfiguration("~/Web.config");
SessionStateSection section = (SessionStateSection)config.GetSection("system.web/sessionState");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文