如何以编程方式将SMTP服务器详细信息存储(保存)回web.config

时间:2010-11-04 18:58:48

标签: asp.net web-config system.net.mail

搜索StackOverflow,我找到this question on how to Retrieve SMTP settings from Web.Config,但没有关于如何将SMTP更新回web.config文件的详细信息。

我从以下代码开始:

Configuration webConfig = WebConfigurationManager.OpenWebConfiguration("~");
MailSettingsSectionGroup settings =
  (MailSettingsSectionGroup)webConfig.GetSectionGroup("system.net/mailSettings");
SmtpSection smtp = settings.Smtp;
SmtpNetworkElement net = smtp.Network;

但很快就被Intellisense强调,SmptSection.Network是一个Get(又称“只读”)访问者。

那么我应该如何以编程方式将我的SMTP数据写回web.config?

2 个答案:

答案 0 :(得分:4)

你应该可以做这样的事情,这有用吗?:

Configuration webConfig = WebConfigurationManager.OpenWebConfiguration("~");
MailSettingsSectionGroup settings =
    (MailSettingsSectionGroup)webConfig.GetSectionGroup("system.net/mailSettings");
SmtpSection smtp = settings.Smtp;
SmtpNetworkElement net = smtp.Network;
net.Port = 25;
net.Host = "localhost";
webConfig.Save();

答案 1 :(得分:0)

看一下这篇文章:http://www.west-wind.com/WebLog/posts/8461.aspx

看起来你需要相当高的访问权限(权限)。

具体来自文章:

protected void Page_Load(object sender, EventArgs e)
{
    Configuration config = WebConfigurationManager.OpenWebConfiguration("~");

    wwDbResourceProviderSection Section = config.GetSection("wwDbResourceProvider") as wwDbResourceProviderSection;

    Section.ShowControlIcons = true;
    config.Save();

    return;
}