gpt4 book ai didi

asp.net-mvc - 从具有常量的类中在 cshtml 上呈现字符串

转载 作者:行者123 更新时间:2023-12-05 01:45:29 24 4
gpt4 key购买 nike

我有一个这样的公开课:

namespace MyProgram.Common
{
public static class UIStrings
{
public const string Title = "Hellow World"
public const string SubTitle = "This is another string. Please click on '<a href=\"/Home/Status\" target=\"_blank">Here</a>'"
}
}

然后,在我的 Index.csthml 上有以下代码:

<label id="title" for="MyTitle">@Myprogram.Common.UiStrings.Title </label>
<label id="title" for="SubTitle">@Myprogram.Common.UiStrings.SubTitle </label>

标题呈现正常,但我在副标题中定义的链接不会呈现为链接,而是呈现为字符串本身。

有没有办法做到这一点?我想避免对 cshtml 文件中的字符串进行硬编码...

最佳答案

用户 Html.Raw

<label id="title" for="MyTitle">@Myprogram.Common.UiStrings.Title </label>
<label id="title" for="SubTitle">@Html.Raw(Myprogram.Common.UiStrings.SubTitle) </label>

关于asp.net-mvc - 从具有常量的类中在 cshtml 上呈现字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41622591/

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