gpt4 book ai didi

asp.net - LabelFor + EditorFor 在同一行?

转载 作者:行者123 更新时间:2023-12-03 20:43:53 25 4
gpt4 key购买 nike

我有这个代码:

<div class="editor-label">
@Html.LabelFor(model => model.Ticket)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Ticket)
@Html.ValidationMessageFor(model => model.Ticket)
</div>

如何在同一行上获取标签和复选框(在本例中为复选框)?我尝试删除 div,但它们仍然出现在不同的行上。

谢谢你。

最佳答案

只需删除分隔它们的div,这对我有用,我得到了Ticket []

另外,如果您知道它是 CheckBoxFor,请使用 CheckBox

<div>
@Html.LabelFor(model => model.Ticket)
@Html.CheckBoxFor(model => model.Ticket)
@Html.ValidationMessageFor(model => model.Ticket)
</div>

我也使用了这个代码,因为 OP 说这是他的代码
<div class="editor-field">
@Html.Label("SMS Alerts?")
@Html.EditorFor(model => model.GetAll)
</div>

我得到 GetAll [] GetAll 是我的 ViewModel 中的 bool
也用过这个
<div>
@Html.LabelFor(model => model.GetAll)
@Html.EditorFor(model => model.GetAll)
</div>

我得到 GetAll []
和这个
<div class="editor-field">
@Html.LabelFor(model => model.GetAll)
@Html.EditorFor(model => model.GetAll)
</div>

我得到 GetAll []
在每种情况下,我的测试都是标签,复选框是内联的

关于asp.net - LabelFor + EditorFor 在同一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10791451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com