我想根据 html 对象中包含的一些变量,使用 razor 语法显示一些 ViewBag 内容。当前内容在条件语句之后换行。这就是我所拥有的:

<h5>Apply salary @ViewBag.salaryStatus to associated objects?</h5>
    @if (ViewBag.salaryStatus == "Executed")
    {
        <h5>(This will overwrite old values of the selected objects).</h5>
    }

实际结果是:
Apply salary reviewed to associated objects?
(This will overwrite old values of the selected objects).

预期结果是:
Apply salary reviewed to associated objects? (This will overwrite old values of the selected objects).

最佳答案

您正在添加多个 H5 元素。这些是块 HTML 元素,默认情况下会放在一个新行上。您应该只创建一个 H5 元素,如下所示:

<h5>Apply salary @ViewBag.salaryStatus to associated objects?
@if (ViewBag.salaryStatus == "Executed")
{
    <text>(This will overwrite old values of the selected objects).</text>
}
</h5>

关于c# - 使用 Razor 条件语句防止换行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30674719/

10-11 12:23