我知道如何在课堂上通过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>
答案 0 :(得分:0)
您应该能够通过以下方式输出资源字符串:
<h1>@Resources.StreetDisplay/h1>