我需要使用IF-ELSE
条件来检查这个人是否被命名Perry
。如果是这样,我需要执行该IF
语句,否则如果人名不是Perry
,那么我将执行 else 块。
即使他们说我们可以C#
与HTML helper
标签混合,我也不能IF-ELSE
像这样使用条件。显示IF-ELSE
为文本。我怎样才能更正我的代码?
if(person == "Perry")
{
<div class="content">
@using (Html.BeginForm("Go", "MyPro", new { }, FormMethod.Post, new { }))
{
@Html.TextBoxFor(mod => mod.id, new { id = "nameid" })
<input type="text" id="name" name="name" />
<input type="submit" value="send" class="send"/>
</div>
}
}else {
<div class="content1">
@using (Html.BeginForm("Come", "MyPro", new { }, FormMethod.Post, new { }))
{
@Html.TextBoxFor(mod => mod.id, new { id = "schoolid" })
<input type="submit" value="Send School" class="submitschool"/>
}
</div>
}