我想清理我們的web.config文件,使每個部署特定的東西不保存在主配置。我使用連接字符串和mailSettings
中的一些進行了管理,但我需要from
屬性以及configSource
,但這似乎不被允許。如何在configSource和屬性中使用mailSettings smtp?
目前我有這樣的:
的web.config:
<system.net>
<mailSettings >
<smtp configSource="email.config" from="[email protected]" />
</mailSettings>
<defaultProxy>
<proxy bypassonlocal="True" usesystemdefault="False" />
</defaultProxy>
</system.net>
email.config
<network host="myhost" password="" userName="" />
理想我想有設置configSource
在任mailSettings
或system.net
,但這不受支持。
有沒有更好的方法來做到這一點?
你幫了我至少這是值得的! :) – 2012-05-21 20:16:32