那該如何來製作呢?其利用SqlDataSource來作連接資料庫時,則連結的字串則會存放在Web.config中,日後要連接資料庫時,開啟SqlDataSource設定資料來源時,從下拉選單中則會看到剛所設定的連結字串名稱。
▪ web.config的code
<connectionStrings>
<add name="連線名稱" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=mdb實體路徑;Persist Security Info=True;Jet OLEDB:Database Password=密碼"providerName="System.Data.OleDb" />
</connectionStrings>
▪ 範例
<connectionStrings>
<add name="ConnectionMDB"connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\myweb\App_Data\mydb.mdb;Persist Security Info=True;Jet OLEDB:Database Password=0000"providerName="System.Data.OleDb" />
</connectionStrings>