在运行时添加连接字符串

发布于 2024-09-12 20:59:06 字数 95 浏览 3 评论 0原文

如果不存在连接字符串,是否可以在运行时将连接字符串插入到 web.config 文件中?这行得通吗?

连接字符串用于 ASP.NET 用户登录并创建帐户数据库。

Is it possible to insert a connection string into a web.config file at runtime, if it isn't there? Would this work?

The connection string is for a ASP.NET user login and create account database.

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

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

发布评论

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

评论(3

狼性发作 2024-09-19 20:59:06

“插入”是什么意思?如果您的意思是可以手动编辑 web.config:是的,可以。您需要为connectionStrings 添加一个条目(如果没有的话),然后为您的特定connectionString 添加一个子节点。

如果你的意思是你能用代码来做吗:理论上是的。然而,这通常是不好的做法,而且会带来麻烦。

How do you mean "insert?" If you mean can you manually edit web.config: yes, you can. You'd add an entry for connectionStrings (if there wasn't one) an then a child node for your specific connectionString.

If you mean can you do it in code: theoretically yes. However, it is normally bad practice, and a pain the rear.

狼亦尘 2024-09-19 20:59:06

是的,这很有可能:

<connectionStrings>
<add name="yourNameHere" connectionString="connectiongStringHere" providerName="nameHere"/>
</connectionStrings>

在 ConfigSections 内

Yes it is very possible:

<connectionStrings>
<add name="yourNameHere" connectionString="connectiongStringHere" providerName="nameHere"/>
</connectionStrings>

inside ConfigSections

很酷又爱笑 2024-09-19 20:59:06

将默认连接字符串放入 web.config 中,并根据需要在运行时替换用户名/密码和数据库名称。

Put a default connectionstring in your web.config and replace the username/password and database name at runtime as desired.

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