我是 HTML5 的新手。此代码在 if 语句上返回解析器错误。我不知道它是否会起作用,那么如何修复 if 语句以及如何使它起作用?
<div class="page">
@if (Constants.EnvironmentSetting.ToUpper() == "LIVE"){
<header>
} else {
<header class="headerTest">
}
<div id="title">
@Content.Image("MulalleyLogoSmall.jpg", "float:left;padding:10px 10px 0 10px", Url)
<div class="head" style="float:left;padding-top:4px;">Instruction To Open Contract (ITOC)</div>
</div>
<div id="logindisplay">
@Html.Partial("_LogOnUserControl")
</div>
<nav>
@Html.Partial("_MenuItems")
</nav>
</header>
<section>
@RenderBody()
</section>
</div>