.NET AppSettings與ConnectionStrings使用案例詳解
阿新 • • 發佈:2021-08-26
目錄
- 1.ConnectionSthttp://www.cppcns.comrings的使用
- 2.<appSettings>的使用
- 3.區別
- 4.測試
AppSettings是ASP.NET1.1時期用的,在.NET Framework 2.0中,新增了ConnectionStrings.
1.ConnectionStrings的使用
<connectionStrings>
<add name="ConnectionStringName" connectionString="Data Source=伺服器名;InitGHiBuial Catalog=名;User ID=使用者;Password=密碼"
providerName="System.Data.SqlClient" />
</connectionStrings>
或者:
<connectionStrings> <add name="ConnectionStringName" connectionString="sever=伺服器名;database=資料庫名;User ID=使用者;Password=密碼" providerName="System.Data.SqlClient" /> </connectionStrings>
在頁面還可以這樣引用<%$ ConnectionString:Name%>.
2.<appSettings>的使用
<add key="connectionstringName" value="data source=伺服器名或IP;initial catalog=資料庫名;persist security info=False;user id=使用者;password=密碼;packet size=4096"> </add>
3.區別
1)AppSettings 是在2003中常用的,ConnectionStrins是2005中常用的.
2)使用ConnectionString的好處:
- 第一:可將連線字串加密,使用MS的一個加密工具即可。
- 第二:可直接邦定的資料來源控制元件,而不必寫程式碼讀出來再賦值給控制元件。
- 第三:可方便的更換資料庫平臺,如換為Oracle資料庫,只需修改providerName。
3)寫在 <appSettings >中用System.Configuration.ConfigurationManager.AppSettings["name"]檢索值。
4.測試
在VS2005中新建一個,然後再defaul頁面中加入如下程式碼
using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender,EventArgs e) { labConn.Text = ConfigurationManager.ConnectionStrings["SiteSqlServer"].ToString(); labApp.Text = ConfigurationManager.AppSettings["SiteSqlServer"].ToString(); } }
而web.config的程式碼如下:
<?xml version="1.0"?> <!-- 注意: 除了手動編輯此檔案以外,您還可以使用 Web 管理工具來配置應用程式的設定。可以使用 Visual Studio 中的 “網站”->“Asp<a href="http://lib.csdn.net/base/dotnet" rel="external nofollow" class='replace_word' title=".NET知識庫" target='_blank' style='color:#df3434; font-weight:bold;'>.NET</a> 配置”選項。 設定和註釋的完整列表在 machine.config.comments 中,該檔案通常位於 /Windows/Microsoft.Net/Framework/v2.x/Config 中 --> <configuration> <connectionStrings> <add name="SiteSqlServer" connectionString="Data Source=XUWEI/SQLEXPRESS;Initial Catalog=store;User ID=dnndemo;Password=dnndemo" providerName="System.Data.SqlClient" /> </connectionStrings> <appSettings> <add key="SiteSqlServer" value="Data Source=XUWEI/SQLEXPRESS;Initial Catalog=store;User ID=dnndemo;Password=dnndemo" /> </appSettings> <system.web> <!-- 設定 compilation debug="true" 將除錯符號插入 已編譯的頁面中。但由於這會 影響效能,因此只在開發過程中將此值 設定為 true。 --> <compilation debug="true"/> <!-- 通過 <authentication> 節可以配置 ASP.NET 使用的 安全身份驗證模式, 以標識傳入的使用者。 --> <authentication mode="Windows"/> <!-- 如果在執行請求的過程中出現未處理的錯誤, 則通過 <customErrors> 節可以配置相應的處理步驟。具體說來, 開發人員通過該節可以配置 要顯示的 html 錯誤頁 以代替錯誤堆疊跟蹤。 <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> <error statusCode="403" redirect="NoAccess.htm" /> <error statusCode="404" redirect="FileNotFound.htm" /> </customErrors> --> </system.web> </configuration>
當然前提是在編輯頁面中添加了兩個lable,分別為labConn和labApp。
讀取Web.Config檔案連線字串string conString = ConfigurationManager.ConnectionStrings["SQLCONNECTIONSTRING"].ConnectionString;
到此這篇關於.NET AppSettings與ConnectionStrings使用案例詳解的文章就介紹到這了,更多相關.NET AppSettings與ConnectionStrings使用內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!