程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> ACCESS在Web.config 裡設置連接字符串

ACCESS在Web.config 裡設置連接字符串

編輯:.NET實例教程
    在web.config中使用象ASP那樣的Server.MapPath取數據庫路徑
  但web.config不認識Server.MapPath,此方法致使程序無法調試,行不通。
  
  如下方法,可以方便的移植程序路徑而不必再去修改Access數據庫路徑。
  
  在web.config中的寫法如下:
  
  <aPPSettings>
  <add key="ConnStr" value="provider=microsoft.jet.oledb.4.0;data source="/>
  <add key="dbPath" value="/AppData/mydata.mdb"/>
  </aPPSettings>
  
  程序中的數據訪問類中我把"ConnStr"和"dbPath"取出來再連接成一個字符串
  代碼如下:
  
   /// <summary>
   /// (靜態)返回數據庫連接串。
   /// </summary>
   protected static string GetConnString()
   {
   return
  System.Configuration.ConfigurationSettings.AppSettings["ConnStr"]+ System.Web.HttpContext.Current.Server.MapPath(System.Configuration.ConfigurationSettings.APPSettings["DataPath"])+";";
   }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved