gpt4 book ai didi

c# - 如何在appsettings中存储带有html内容的字符串

转载 作者:太空狗 更新时间:2023-10-29 22:22:59 25 4
gpt4 key购买 nike

我已经编写了一些电子邮件代码,我需要发送所有带有签名的电子邮件。

我被要求将签名存储在 web.config 文件的应用程序设置中。

我不确定这是不是正确的地方。有人可以建议我吗?据我所知,那里只会有一个电子邮件签名。

我试过:

<appSettings>
<add key="CompanyEmailSignature" value="The Biscuit Factory\n\r
Somewhere in the Bahamas\n\r
<a href="http://www.thebiscuitfactory.com">The Biscuit Factory</a>\n\r
Our mission is to make tasty biscuits" />

</appSettings>

不过我不确定如何转义链接。我看了一些建议并尝试了:

<a href=""http://www.thebiscuitfactory.com"">The Biscuit Factory</a>

我试过了:

<a href=\"http://www.thebiscuitfactory.com\">The Biscuit Factory</a>

但无法让它工作。

谁能告诉我如何逃避这个,如果有其他地方可以更好地存储它?

最佳答案

您是否已尝试更改 <>进入&lt;&gt;

<>不允许在 xml (appsettings) 属性中。

也适用于 "你可以尝试使用 &quot;

所以最后你有这个:

<appSettings>
<add key="CompanyEmailSignature" value="
The Biscuit Factory\n\r
Somewhere in the Bahamas\n\r
&lt;a href=&quot;http://www.thebiscuitfactory.com&quot;&gt;The Biscuit Factory&lt;/a&gt;\n\r
Our mission is to make tasty biscuits
" />
</appSettings>

关于c# - 如何在appsettings中存储带有html内容的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16451470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com