如何在应用设置中存储html内容的字符串

本文关键字:html 字符串 存储 应用 设置 | 更新日期: 2023-09-27 18:12:50

我写了一些电子邮件代码,我被要求发送所有带有签名的电子邮件。

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

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

我试着:

<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>

and I tried:

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

但是不能使它工作。

谁能告诉我如何逃脱这个,也如果有其他地方这将更好地存储?

如何在应用设置中存储html内容的字符串

您是否已经尝试将<>更改为&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>