我正在尝试使用视图中选择的百分比值来设置模型中的“折扣”属性。通过选择代表产品可用折扣的单选按钮来选择百分比值。如何从所选单选按钮获取值并相应地设置模型?我是否必须使用数据库/控制器?
<br />
<div>
<strong>Discounts:</strong>
@foreach (var discount in Model.Product.DiscountsAvailable)
{
<br/>
@Html.RadioButton("Product.Discount", discount, true,
new { Id = string.Format("{0}-{1}", Model.Product.CourseId,
discount.DiscountId) })
@discount.Description
@discount.Percentage
}
<br/>
</div>