如何在ASP.NET中的HTML标记内使用资源

时间:2019-06-19 08:29:14

标签: html asp.net resources

我知道如何在课堂上通过DataAnotation使用资源:

    [Display(Name="StreetDisplay", 
    ResourceType=typeof(Resources))]        
    public string Street { get; set; } 

也在ActionLink中:

     <li>@Html.ActionLink(Resources.StreetDisplay, "Index", "Home")</li>

如果我想使用h1 html标签中的资源怎么办?

<h1>some multilangue text</h1>

1 个答案:

答案 0 :(得分:0)

您应该能够通过以下方式输出资源字符串:

<h1>@Resources.StreetDisplay/h1>