在ASP.NET标记中打印Resources.resx文件值

时间:2011-12-06 11:26:33

标签: asp.net .net resources

我需要在asp.net标签内的资源文件(.resx)内打印字符串的值

我使用了以下方法

例如:

<ext:ComboBox ID="cmbProgram" runat="server" FieldLabel="<%= Resource.StringName %>"

<ext:ComboBox ID="cmbProgram" runat="server" FieldLabel="<%= Response.Write(Resource.StringName) %>"

但这两种方法都没有提供字符串的,而是提供了ID。如何获取ASP.NET标记中的值?

1 个答案:

答案 0 :(得分:1)

假设你有Control.ascx

<ext:Tag runat="server" meta:resourcekey="fooBar" />

然后将Controls.ascx.resx放入包含相应字符串的App_LocalResources中:

fooBar.PropetyName = "x"