asp.net-mvc-3 – 强类型的RadioButtonlist

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – 强类型的RadioButtonlist前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要获得一些选项(例如付款方式现金,信用卡等),并将其绑定到单选按钮。我相信MVC 3中没有RadioButtonList。

另外,一旦收音机被绑定,我想在编辑答案时向用户显示先前选择的选项。

解决方法

和往常一样,你从一个模型开始:
public enum PaiementMethod
{
    Cash,CreditCard,}

public class Myviewmodel
{
    public PaiementMethod PaiementMethod { get; set; }
}

那么一个控制器:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        var model = new Myviewmodel();
        return View(model);
    }

    [HttpPost]
    public ActionResult Index(Myviewmodel model)
    {
        return View(model);
    }
}

最后一个观点:

@model Myviewmodel
@using (Html.BeginForm())
{
    <label for="paiement_cash">Cash</label>
    @Html.RadioButtonFor(x => x.PaiementMethod,"Cash",new { id = "paiement_cash" })

    <label for="paiement_cc">Credit card</label>
    @Html.RadioButtonFor(x => x.PaiementMethod,"CreditCard",new { id = "paiement_cc" })

    <input type="submit" value="OK" />
}

如果您想要一些更通用的解决方案,将其封装在帮助器中,您可能会发现following answer有帮助。

原文链接:https://www.f2er.com/aspnet/253166.html

猜你在找的asp.Net相关文章