我想知道爲什麼我不能在ASP.NET web.config文件中使用自定義環境變量?ASP.NET web.config文件中的環境變量
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="ConnectionName" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename='%MyProjectsFolder%\WebAppName\App_Data\Database1.mdf';User Instance=true" providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
我通過開始 - >運行檢查到.mdf文件的文件路徑是有效的。
當我運行我的C#代碼連接到數據庫,會出現以下錯誤:
An attempt to attach an auto-named database for file %MyProjectsFolder%\WebAppName\App_Data\Database1.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.
您使用的備用解決方案是什麼? – 2017-01-21 01:47:33