所有頁面硬編碼的連接具有中有一個ConnectionString的一個webconfig文件...我怎麼不stringin
但後來當過我訪問數據庫,我不得不一次又一次地寫相同的ConnectionString ..有沒有一種方法可以從webconfig文件本身獲取連接字符串的值..?
System.Data.SqlClient.SqlConnection dataConnection = new SqlConnection();
dataConnection.ConnectionString =
@"Data Source=JAGMIT-PC\SQLEXPRESS;Initial Catalog=SumooHAgentDB;Integrated Security=True";
System.Data.SqlClient.SqlCommand dataCommand = new SqlCommand();
dataCommand.Connection = dataConnection;
有什麼建議?
確保你添加引用System.Configuration在此之前這個。 – 2009-10-13 21:53:37
並確保將你的更新(因爲它沒有被使用,可以過時)連接字符串裏面/配置/ connectionStrings配置單元,在你的web.config – 2009-10-13 21:57:44
所以在這個即時硬編碼數據源= JAGMIT-PC \ SQLEXPRESS;初始目錄= SumooHAgentDB;集成安全性= True取代NameofConnectionstring? – user175084 2009-10-13 21:58:17