ASP.NET 如何将 .resx 文件分配给 RadioButtonList

发布于 2024-09-12 02:09:35 字数 73 浏览 1 评论 0原文

我的页面上有 radioButtonList 。我想根据 .rex 文件更改该控件的 ListItems Text 属性。怎么办呢?

I have the radioButtonList on my page. I want to change that control's ListItems Text property depending on the .rex file. How to do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风情万种。 2024-09-19 02:09:35

如果项目嵌入在 aspx 中,则必须在 ListItem 元素中绑定文本属性: Text="<%$ Resources:WebResources, RadioItemText %>"。如果它们是以编程方式生成的,则必须将其存储在视图模型中(使用数据绑定)或使用添加:

myRadioButtonList.Add(WebResources.ItemText1);

You have to bind the text property: Text="<%$ Resources:WebResources, RadioItemText %>" in the ListItem element, if the items are embedded in the aspx. If they are generated programmatically, you have to store it in your viewmodel (using databind) or with add:

myRadioButtonList.Add(WebResources.ItemText1);
书信已泛黄 2024-09-19 02:09:35

我停止绑定,并手动执行操作。获取包含两列(ID 和值)的数据集。

    Dim rmHello As New ResourceManager("Resources.ResourceFileName", Assembly.Load(New AssemblyName("app_GlobalResources")))
    Dim dsData As DataSet
    Dim drData As DataRow
    Dim li As ListItem

    If Not IsNothing(dsData) AndAlso dsData.Tables.Count > 0 Then
            For Each drData In dsData.Tables(0).Rows
                li = New ListItem(rmHello.GetString(CStr(drData.Item("ID"))), CStr(drData.Item("value")))
                rbl.Items.Add(li)
            Next
        End If

我确信对数据的检查以及对 table(0).Rows 的引用可能会更整洁,但我希望这对某人来说更清楚。

I stopped binding, and did things manually. Grabbed a dataset with two columns, ID and value.

    Dim rmHello As New ResourceManager("Resources.ResourceFileName", Assembly.Load(New AssemblyName("app_GlobalResources")))
    Dim dsData As DataSet
    Dim drData As DataRow
    Dim li As ListItem

    If Not IsNothing(dsData) AndAlso dsData.Tables.Count > 0 Then
            For Each drData In dsData.Tables(0).Rows
                li = New ListItem(rmHello.GetString(CStr(drData.Item("ID"))), CStr(drData.Item("value")))
                rbl.Items.Add(li)
            Next
        End If

I am sure the check for data, and posibly the reference to the table(0).Rows could be tidier, but I hope that is clearer for someone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文