指定数据源 ConnectionString 的 ASP.NET Web.Config 文件

发布于 2024-11-09 06:08:48 字数 185 浏览 0 评论 0原文

我正在尝试使用“SQL Express”(或者是 SQL Compact?).MDF 文件作为使用图表控件的简单网站上的数据源。

在本地,效果很好;但前提是“AttachDbFilename”具有完整路径。我是否搞砸了一些事情,或者它真的需要完整路径吗?如果是这样-我如何在不使用 Server.MapPath() 之类的情况下完成此任务?

I'm trying to use an 'SQL Express' (or is it SQL Compact?) .MDF file as the datasource on a simple website using a Chart control.

Locally, it works great; but only if the 'AttachDbFilename' has the full path. Am I messing something up, or does it really need to be full path? If so - how do I accomplish this without using something like Server.MapPath()?

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

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

发布评论

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

评论(1

倚栏听风 2024-11-16 06:08:48
<add name="LocalSqlServer"
     connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"

默认情况下,|DataDirectory|变量将扩展如下:

  • 对于放置在用户计算机上的目录中的应用程序,这将是应用程序的 (.exe) 文件夹。
  • 对于在 ClickOnce 下运行的应用程序,这将是由 ClickOnce 创建的特殊数据文件夹
  • 对于 Web 应用程序,这将是 App_Data 文件夹

您可以通过调用 AppDomain.CurrentDomain.SetData("DataDirectory", newpath)以编程方式设置 DataDirectory

<add name="LocalSqlServer"
     connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"

By default, the |DataDirectory| variable will be expanded as follow:

  • For applications placed in a directory on the user machine, this will be the app's (.exe) folder.
  • For apps running under ClickOnce, this will be a special data folder created by ClickOnce
  • For Web apps, this will be the App_Data folder

You can programmatically set DataDirectory by calling AppDomain.CurrentDomain.SetData("DataDirectory", newpath)

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