SQL会话状态服务器动态连接字符串

发布于 2024-11-17 00:15:53 字数 381 浏览 1 评论 0原文

我正在使用 SQL Server 来实现 ASP.Net 会话状态。但是,我只能在运行时检索连接字符串,因此无法将其存储在 web.config 文件中。通常它会在:

<sessionState 
            mode="SQLServer"
            sqlConnectionString="data source=127.0.0.1;user id=<username>;password=<strongpassword>"
            cookieless="false" 
            timeout="20" 
    />

如何在运行时设置连接字符串? (即网络应用程序启动后。)

I am using a SQL Server for ASP.Net session state. However, I am only able to retrieve the connection string at runtime and for that reason cannot store it in the web.config file. Usually it would be in:

<sessionState 
            mode="SQLServer"
            sqlConnectionString="data source=127.0.0.1;user id=<username>;password=<strongpassword>"
            cookieless="false" 
            timeout="20" 
    />

How can I set that connection string at runtime? (i.e. after the web app spins up.)

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

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

发布评论

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

评论(2

笔芯 2024-11-24 00:15:53

您是否考虑过在 Global.asax 的 Application_Start 事件中执行此操作?这似乎是设置类似内容的合乎逻辑的地方。

来自 MSDN 文档

当第一个资源(例如
作为 ASP.NET 应用程序中的页面)
被要求。应用程序_启动
期间仅调用该方法一次
应用程序的生命周期。你
可以使用该方法进行启动
任务,例如将数据加载到
缓存并初始化静态值。

您应该在期间仅设置静态数据
应用程序启动。不设置任何
实例数据,因为它将是
仅适用于第一个实例
HttpApplication 类的
创建。

Have you looked at doing it in the Application_Start event in Global.asax? This seems like the logical place to set something like that.

From MSDN's documentation:

Called when the first resource (such
as a page) in an ASP.NET application
is requested. The Application_Start
method is called only one time during
the life cycle of an application. You
can use this method to perform startup
tasks such as loading data into the
cache and initializing static values.

You should set only static data during
application start. Do not set any
instance data because it will be
available only to the first instance
of the HttpApplication class that is
created.

别在捏我脸啦 2024-11-24 00:15:53

我认为您可以在 System.Web.SessionState 内的某个位置设置该字符串,希望这将帮助您到达正确的位置。抱歉,我无法给出更好的答案,我仍在尝试自己弄清楚。如果我这样做了,我会让你知道的。 GL

I would think you can set that string somewhere within System.Web.SessionState, hopefully that will help you get to the right place. Sorry I can't give a better answer, I'm still trying to figure it out myself. If I do, I'll let you know. GL

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