给HyperLink控件连接资源文件
例如,将 myLinkText 字符串值设置为 This is a good link。
对于 Hyperlink 控件,在“属性”中单击“表达式”,然后单击省略号按钮(“...”)。
随即出现
在“可绑定属性”下单击“文本”,然后在“表达式类型”列表中输入“资源”。
随即出现 ResourceExpressionEditorSheet 类定义的资源表达式属性。
在“表达式属性”下,将“ClassName”设置为“Strings”(已编译的 Strings.resx 资源文件的类名)并将“ResourceKey”设置“myLinkText”(Strings.resx 中的字符串名称)。
<asp:HyperLink runat="server" ID="hyplk" Text="<%$ Resources:Strings, myLinkText %>" NavigateUrl="http://www.ideaext.com"></asp:HyperLink>
同控件
<asp:Literal runat="server" ID="Literal1" Text="<%$ Resources:labels,newsletter%>"></asp:Literal>
同控件
<asp:Literal runat="server" ID="Literal1" Text="<%$ Resources:labels,newsletter%>"></asp:Literal>