close

不論是MVC 或 ASP.NET 乃至於WinForm 都會有到config取預設資料的時候

最常見的是資料庫連線字串之外,比如ApiUrl , 正式或測試不同的切換參數......等,

以下便是實作

 

1.在 Web.config  appSettings 區段中加入要從程式讀取的 Property (Key-value)

<appSettings>
  <add key="myProperty" value="Hello World" />
  ...
</appSettings>

2. 使用 System.Configuration Namespace

using System.Configuration;

3.範例程式碼

var property = ConfigurationManager.AppSettings["MyProperty"];

 

參考來源: https://sdwh.dev/posts/2021/05/ASPNET-Read-Property-From-WebConfig/

arrow
arrow
    創作者介紹
    創作者 蔡官宏 的頭像
    蔡官宏

    MVC5開發疑難雜病論

    蔡官宏 發表在 痞客邦 留言(0) 人氣()