Hey Guys我试图对Web配置文件的SMTP部分进行转换。
这是我到目前为止所得到的:
<mailSettings>
<smtp>
<network host="smtp.sendgrid.net" port="25" userName="UserName1Here" password="Password1Here" defaultCredentials="false" />
</smtp>
</mailSettings>
然后在Webconfig的.production版本中我有这个:
<mailSettings>
<smtp xdt:Transform="Replace">
<network host="smtp.sendgrid.net" port="25" userName="UserName2Here" password="Password2Here" defaultCredentials="false" />
</smtp>
似乎无法让它发挥作用......我错过了什么想法?
答案 0 :(得分:0)
修正了......
我缺少的是web-config文件的route元素。
<a class="atag" id="11">
<a class="atag" id="12">
$(".atag").click(function() {
var id=$(this).attr("id");
$(body).find("#"+id).toggle();
});
所以现在这个工作
<system.net>
希望这有助于其他人。