【edobnet】.net framework 2.0以上修改config配製更容易

iDotNetSpace發表於2008-06-16
讀APPSETTING行簡單:
 _nowVersion = ConfigurationManager.AppSettings["nowVersion"];

    以前與配製通過操作XML檔案來進行,現在可以修改為以下方式:

 ExeConfigurationFileMap filemap = new ExeConfigurationFileMap();
            filemap.ExeConfigFilename 
= "AupdateConsole.exe.config";
            Configuration config 
= ConfigurationManager.OpenMappedExeConfiguration(filemap, ConfigurationUserLevel.None);

            config.AppSettings.Settings[
"nowVersion"].Value = _nowVersion;
            config.AppSettings.Settings[
"siteCode"].Value = _siteCode;
            config.AppSettings.Settings[
"siteName"].Value = _siteName;
            config.AppSettings.Settings[
"appId"].Value = _appId;
            config.AppSettings.Settings[
"appCode"].Value = _appCode;
            config.Save();
            
return true;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-349321/,如需轉載,請註明出處,否則將追究法律責任。

相關文章