gpt4 book ai didi

asp.net - 从 asp.net 4 中的资源文件获取文本

转载 作者:行者123 更新时间:2023-12-02 17:41:39 24 4
gpt4 key购买 nike

我有一个asp.net网页,其中包含一个标签,现在我想从本地资源文件中获取标签的文本属性,我有一个.resx文件位于App_LocalResources下文件夹,其中名称为 UserNameLabel.Text值为 User Name现在在我的aspx我正在使用的文件Label像这样控制

<asp:Label ID="UserNameLabel" runat="server" resourcekey="UserNameLabel"></asp:Label>

但是我无法获取标签上的文本,谁能告诉我从资源文件添加文本属性的正确方法

最佳答案

首先,您需要在 Web 项目内创建适当的结构。在本例中,我将使用 Default.aspx:

enter image description here

请注意,我已将 Default.aspx.resx 文件放置在 App_LocalResources 中。

接下来在 Default.aspx.resx 中输入新项目,如下所示:

enter image description here

重要的是您需要设置 Text 属性(UserNameLabel.Text)

最后是 aspx 代码:

<asp:Label ID="UserNameLabel" runat="server" meta:resourcekey="UserNameLabel"></asp:Label>

我已使用 meta:resourcekey 链接到适当的资源 key 。

关于asp.net - 从 asp.net 4 中的资源文件获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13849015/

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