关于c#:如何将字符串属性绑定到视图中的单选按钮? | 珊瑚贝

How to bind a string property to radio buttons in view?


我正在开发一个 ASP MVC 应用程序。我有一个具有如下字符串属性的模型:

1
2
3

string TeamSize;

在视图中,我想显示一些单选按钮来选择团队规模,而不是一个文本框,例如:

1
(o)010   ()1020   ()2030   ()> 30

我知道 TeamSize 应该定义为 enum,然后绑定将是自动的,但是与其他应用程序的一些交互会导致 TeamSize 成为一个字符串。

我知道使用 JavaScript 很容易实现,但我想知道是否可以使用 ASP MVC 4 将该字符串属性与视图中的单选按钮绑定?


只需使用 RadioButtonFor() 助手

1
2
3
4
@Html.RadioButtonFor(m => m.TeamSize,“0-10”)<span>010</span>
@Html.RadioButtonFor(m => m.TeamSize,“10-20”)<span>1020</span>
@Html.RadioButtonFor(m => m.TeamSize,“20-30”)<span>2030</span>
@Html.RadioButtonFor(m => m.TeamSize,“> 30”)<span>> 30</span>

如果 TeamSize 的值为”10-20″,则将选择第二个单选按钮。如果用户选择第三个按钮,该值将返回为”20-30″

注意:您可能希望将 id 传递给每个按钮并使用 <label for=> 而不是 <span>

1
@Html.RadioButtonFor(m => m.TeamSize,“0-10”, new { id =“TS1”})<label for=“TS1”>010</label>

来源:https://www.codenong.com/25808853/

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_9726.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?