如何访问 web.config 值?

发布于 2024-10-31 22:27:33 字数 627 浏览 2 评论 0原文

我在我的 web.config 中写了这个,现在如何访问

我正在使用的代码中的主机、端口,但它无法读取,请帮助我

string smtphost = ConfigurationManager.AppSettings["host"].ToString();

<mailSettings>
    <smtp from="mail.crmprocorp.com" deliveryMethod="Network">
       <network 
          defaultCredentials="false" 
          enableSsl="false" 
          host="smtp.gmail.com" 
          port="25" 
          password="password" 
          userName="[email protected]"/>
    </smtp>
</mailSettings>

I wrote this in my web.config now how to access host,port in my code

I am using like this but it is unable to read pls help me

string smtphost = ConfigurationManager.AppSettings["host"].ToString();

<mailSettings>
    <smtp from="mail.crmprocorp.com" deliveryMethod="Network">
       <network 
          defaultCredentials="false" 
          enableSsl="false" 
          host="smtp.gmail.com" 
          port="25" 
          password="password" 
          userName="[email protected]"/>
    </smtp>
</mailSettings>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你是我的挚爱i 2024-11-07 22:27:33

您必须使用 ConfigurationManager 及其方法 GetSection 来执行此操作。

MSDN 文档:
http://msdn.microsoft.com/en-us /library/system.configuration.configurationmanager.getsection.aspx

You have to use the ConfigurationManager and its method GetSection to do this.

MSDN docs:
http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.getsection.aspx

挥剑断情 2024-11-07 22:27:33

尝试以下操作来获取 MailSettingsSectionGroup(假设这是一个 Web 应用程序)

Configuration config = WebConfigurationManager.OpenWebConfiguration(HttpContext.Current.Request.ApplicationPath);
MailSettingsSectionGroup settings = (MailSettingsSectionGroup)config.GetSectionGroup("system.net/mailSettings");
string smtpHost = settings.Smtp.Network.Host;

Try the following to get the MailSettingsSectionGroup (assuming this is a web application)

Configuration config = WebConfigurationManager.OpenWebConfiguration(HttpContext.Current.Request.ApplicationPath);
MailSettingsSectionGroup settings = (MailSettingsSectionGroup)config.GetSectionGroup("system.net/mailSettings");
string smtpHost = settings.Smtp.Network.Host;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文