gpt4 book ai didi

c# - 在 gridview 中格式化枚举

转载 作者:太空狗 更新时间:2023-10-29 21:15:11 25 4
gpt4 key购买 nike

我需要在 gridview 中显示枚举的名称按数据表返回其数值

我正在将它用于其他列

<asp:BoundField DataField="Name" HeaderText="User Name" /> 

我需要用它来枚举以显示枚举性别的字符串值

<asp:BoundField DataField="Gender" HeaderText="Gender" /> 

最佳答案

试试这个解决方案

Enum.GetName Method

<asp:TemplateField HeaderText="Category">
<ItemTemplate>
<div>
<%# Enum.GetName(typeof(GlobalLibrary.Constants.Category),Convert.ToInt32(Eval("Category"))) %>
</div>
</ItemTemplate>
</asp:TemplateField>

关于c# - 在 gridview 中格式化枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3606700/

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