【发布时间】:2014-04-29 09:52:33
【问题描述】:
我的Index.cshtml 中有以下代码/标记:
<p>
@Html.ActionLink("Create New", "Create")
@using (Html.BeginForm("Index", "Clients", FormMethod.Get))
{
<p>
Title: @Html.TextBox("search") <br />
<input type="submit" value="Search" />
</p>
}
</p>
Visual Studio 2013 警告我最后一行 (</p>) 没有开始标记。我在文档中没有任何其他 <p> 或 </p> 标记。怎么回事?
完整的警告消息:End tag is missing matching start tag。
【问题讨论】:
标签: html asp.net razor visual-studio-2013 warnings