来自代码隐藏的 umbraco 数据类型和文本值
我正在尝试从 API 获取下拉列表的文本值,但我真的很挣扎。
这就是我现在所拥有的:
Document doc = new Document(Node.GetCurrent().Id);
doc.GetProperty("fieldPropertyName").Value;
这将返回预值 id 的字符串表示形式。
我想要的是该预值的文本。
预先感谢您的帮助。
I am trying to get the text value of a dropdown list from the API and I am seriously struggling.
This is what I have at the moment:
Document doc = new Document(Node.GetCurrent().Id);
doc.GetProperty("fieldPropertyName").Value;
This returns a string representation of the id for the prevalue.
What I want is the text for that pre value.
Thanks in advance for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用库函数...
Use the library function...
请原谅这是在 VB 中。
这是我碰巧正在开发的语言。(我多么希望我可以使用 C#)
Please excuse this being in VB.
This is the language I happened to be developing in. (How I wish I could use C#)
使用下面的代码
aspx 页面
这里的代码
REGIONNAME= 我们的字段名称,
use following code
aspx page
Code Behind
here REGIONNAME= our field name,