gpt4 book ai didi

c# - 使用 Razor 条件语句防止换行

转载 作者:行者123 更新时间:2023-11-30 15:25:39 28 4
gpt4 key购买 nike

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

<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 元素。这些是 block 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/

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