我正在使用 C#.NET MVC3 (Razor) 创建一个简单的表单。但在那种形式中,我需要以单选按钮的形式打印列表的内容。但我不确定这是如何工作的:
@using(Html.BeginForm("Method", "Controller", FormMethod.Post))
{
foreach (Items item in Model.Items)
{
<div>
@Html.RadioButtonFor(item->itemId)
@Html.LabelFor(item->description)
</div>
}
}
但这不起作用。
我可能可以使用普通的 html 标签来创建单选按钮。但是数据不会自动保存在右边吗?
我怎样才能使这项工作?