将连接字符串添加到自定义 ASP.net 控件

发布于 2024-12-03 07:38:12 字数 228 浏览 0 评论 0原文

我正在开发一个 SiteFinity DLL 自定义控件(自​​定义 ASP.net 控件),它必须连接到外部数据库(SiteFinity 的 DB 外部)以获取一些数据并显示它。问题是,由于它是 DLL 而不是网站,因此我无法添加连接字符串,因为没有 web.config 文件。有没有什么方法可以以编程方式定义连接字符串,或者如果我在项目中创建一个 web.config 文件并将其标记为嵌入式资源,它会起作用吗?

谢谢。

I am developing a SiteFinity DLL custom control (custom ASP.net control) that has to connect to an external database (external to SiteFinity's DB) to fetch some data and display it. Problem is that since it is a DLL and not a website, I can't add a connectionstring because there is no web.config file. Is there any way to programatically define the connectionstring or would it work if I create a web.config file in the project and just mark it as an embedded resource?

Thanks.

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

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

发布评论

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

评论(2

沉默的熊 2024-12-10 07:38:13

如果想法是在网站中使用 dll(听起来像),那么您仍然可以使用 web.config 来存储配置设置并在运行时读取它们。

If the idea is to use the dll in a website (which it sound like), then you can still use the web.config to store configuration settings and read them at runtime.

谎言 2024-12-10 07:38:12

我确信您可以在特定条件下使用 App.Config 文件。请通过以下链接:

http://social.msdn.microsoft.com/forums/en-US/vbgeneral/thread/6bd72b9f-5db5-4be2-833f-215a4bd55b3e

I am sure you can use App.Config file with certain condition. Please go through with below link:

http://social.msdn.microsoft.com/forums/en-US/vbgeneral/thread/6bd72b9f-5db5-4be2-833f-215a4bd55b3e

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