[ASP.NET][C#]app.config與web.config的增加、修改、刪除操作
應用程式組態檔,對於asp.net是web.config,對於WindowsForm程式則是App.config(執行檔名稱.exe.config)。組態檔對於程式本身來說,就是基礎和依據,其本質是一個xml檔案,對於組態檔的操作,從.net2.0開始就方常的方便了,提供了 System.Web.Configuration 與 System.Configuration 兩個命名空間,要使用它,需要加入參考。 在WindowsForm中使用 System.Configuration.ConfigurationManager 在ASP.NET中使用 System.Web.Configuration.WebConfigurationManager 對於組態檔內容的讀取,實在是太方便了XD。 實作: 加入組態檔 以一小段App.config的內容來實作: 組態檔的內容如下: 1.讀取值: Asp.Net:System.Web.Configuration.WebConfigurationManager.AppSettings["A"]; WinForm:System.Configuration.ConfigurationManager.AppSettings["A"]; 2.增加 ASP.NET(需要有寫入權限) //Configuration與AppSettingsSection必須引用System.Configuration才可使用! Configuration config = WebConfigurationManager.OpenWebConfiguration( null ); AppSettingsSection app = config.AppSettings; app.Settings.Add( "B" , "This is B value" ); config.Save(ConfigurationSaveMode.Modified); WinForm //Configuration與AppSettingsSection必須引用System.Configuration才...

留言
張貼留言