ASP.NET 如何将 .resx 文件分配给 RadioButtonList
我的页面上有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果项目嵌入在 aspx 中,则必须在 ListItem 元素中绑定文本属性:
Text="<%$ Resources:WebResources, RadioItemText %>"
。如果它们是以编程方式生成的,则必须将其存储在视图模型中(使用数据绑定)或使用添加: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:我停止绑定,并手动执行操作。获取包含两列(ID 和值)的数据集。
我确信对数据的检查以及对 table(0).Rows 的引用可能会更整洁,但我希望这对某人来说更清楚。
I stopped binding, and did things manually. Grabbed a dataset with two columns, ID and value.
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.