1

我有一个页面,我在其中创建了一个类似的表单

@{
    ViewBag.Title = "Login";
}

@Styles.Render("~/bundles/login/css")

@Html.BeginForm("Index", "Login", null)
{
    // Normal HTML content that constructs the form.
}

表单按预期工作,并在提交时重定向到指定的控制器,但页面顶部显示以下不需要的文本,

System.Web.Mvc.Html.MvcForm {}

我无法弄清楚为什么会显示此文本。有任何想法吗?

4

2 回答 2

2
@{
ViewBag.Title = "Login";
}

@Styles.Render("~/bundles/login/css")

@using(Html.BeginForm("Index", "Login", null))
{
 // Normal HTML content that constructs the form.
}
于 2013-09-25T07:20:13.717 回答
2

你应该使用

@using(Html.BeginForm("Index", "Login", null))
{
//Code here 
}

或其他使用

Html.EndForm称赞Html.Beginform

于 2013-09-25T07:18:07.187 回答