如何从配置文件中获取特定值 [重复]
Posted
技术标签:
【中文标题】如何从配置文件中获取特定值 [重复]【英文标题】:How do i get a specific value from the config file [duplicate] 【发布时间】:2019-11-14 03:37:48 【问题描述】:您好,我收到了以下app.config
。
我如何获取 smtp 服务器邮件主题等的值。
string filePath = ConfigurationManager.AppSettings["SmtpServer"]; i'm getting nothing
实际上添加的键值也返回null。
【问题讨论】:
见***.com/questions/13043530/… 【参考方案1】:很简单
1st 你这样设置web.config 或app.config 文件值。
<appSettings>
<add key="SmtpServer" value="abc" />
</appSettings>
然后获取价值。
string filePath = Convert.ToString(ConfigurationManager.AppSettings["SmtpServer"]);
或者 同 app.config 文件
string filePath = System.Configuration.ConfigurationManager.AppSettings["SmtpServer"];
【讨论】:
以上是关于如何从配置文件中获取特定值 [重复]的主要内容,如果未能解决你的问题,请参考以下文章