指定数据源 ConnectionString 的 ASP.NET Web.Config 文件
我正在尝试使用“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,|DataDirectory|变量将扩展如下:
您可以通过调用 AppDomain.CurrentDomain.SetData("DataDirectory", newpath)以编程方式设置 DataDirectory
By default, the |DataDirectory| variable will be expanded as follow:
You can programmatically set DataDirectory by calling
AppDomain.CurrentDomain.SetData("DataDirectory", newpath)