c# – 如何覆盖Razor的“名称”HtmlAttribute

前端之家收集整理的这篇文章主要介绍了c# – 如何覆盖Razor的“名称”HtmlAttribute前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@Html.RadioButtonFor(Model => Model.Location,"Location")
    @Html.LabelFor(Model=>Model.Location,"Location")
    @Html.RadioButtonFor(Model=>Model.Model,"Model")
    @Html.LabelFor(Model=>Model.Model,"Model")
    @Html.RadioButtonFor(Model=>Model.MovableUnit,"MU")
    @Html.LabelFor(Model=>Model.MovableUnit,"MU")




   <input id="Location" name="Location" type="radio" value="Location" />
    <label for="Location">Location</label>
    <input id="Model" name="Model" type="radio" value="Model" />
    <label for="Model">Model</label>
    <input id="MovableUnit" name="MovableUnit" type="radio" value="MU" />
    <label for="MovableUnit">MU</label>

所有上述单选按钮如何使用通用名称=“radiobtn”?
问题是我想一次只选择一个单选按钮,但在这种情况下,所有这些都可以同时选择.

解决方法

只要在你的Model类中创建一个虚拟属性,
public string Dummy {get;组;}
@Html.RadioButtonFor(Model => Model.Location,"LOC",new { @Name = "Dummy"})
@Html.RadioButtonFor(Model => Model.Model_Number,"MOD",new { @Name = "Dummy" })
@Html.RadioButtonFor(Model => Model.MovableUnit,"MU",new { @Name = "Dummy" })

使用属性名称“Dummy”获取值“LOC”,“MOD”,“MU”.

原文链接:https://www.f2er.com/csharp/94306.html

猜你在找的C#相关文章