我正在嘗試建立ASP.NET網站項目和SQL Server 2008 R2構建的數據庫之間的連接。將ASP.NET WebSite連接到SQL數據庫
我需要這樣做的方式是使用Web.config
頁面中的connectionString
,但我不知道給它提供什麼值或如何使用所述值建立連接。 (使用C#)
任何幫助將不勝感激,因爲我發現旁邊沒有關於這個問題的信息。
這裏是(默認)值,是目前在Web.config
頁:
<connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
</connectionStrings>
這可能是對你有用...它創建連接字符串一招http://stackoverflow.com/questions/3954029/how-to-use-sqlconnect-or-sqldriverconnect/3954073#3954073 –
「我發現旁邊沒有關於這個主題的信息」 - 單獨在SO上有超過5000次點擊「連接字符串」! – Jason
@酸,你得到它的工作? – KreepN