我试图从协会那里学习MVC 3和Razak。 NET背景。
我急切希望得到一个简单的局部观点(在共享的夹中),把它交给一个特定的控制员,以便我能够在其他地方,例如文章、博客等地重新使用。 我尝试采用以下各种方式。
@using (Html.BeginForm("Create", "Comment", FormMethod.Post, new { }))
{
<div>
<fieldset>
<legend>Comments</legend>
<div >
@Html.LabelFor(m => m.Name)
@Html.TextBoxFor(m => m.Name)
</div>
<div >
@Html.LabelFor(m => m.Email)
@Html.TextBoxFor(m => m.Email)
</div>
<div >
@Html.LabelFor(m => m.Body)
@Html.TextBoxFor(m => m.Body)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
</div>
}
担任评论控制者行动的职务如下。
[HttpPost]
public ActionResult Create()
{
// Save comment code here
return View();
}
There is any simple way of doing this without having to bound to a specfic route?