gpt4 book ai didi

c# - 从 MVC2 中的枚举获取单选按钮

转载 作者:太空宇宙 更新时间:2023-11-03 19:24:31 25 4
gpt4 key购买 nike

我需要在我的 MVC2 应用程序中使用枚举来呈现单选按钮。

谁能帮我解决这个问题。

感谢分享您的智慧。

最佳答案

您将需要使用 GetNames 函数:

<% foreach (string name in Enum.GetNames(typeof(EnumType)))
{
%>
<input type="radio" value="<%=name %>" name="instanceName"/>
<%

} %>

然后在服务器端,您可以使用 Enum.Parse 函数将字符串解析回枚举。

更新

Jace 评论默认模型绑定(bind)器将为您将字符串映射到枚举是正确的。

关于c# - 从 MVC2 中的枚举获取单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9823446/

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