我的应用程序中有一个编辑视图。这是Razor syntax
和POSTing
的{{1}}
form
运行应用程序后,在生成@using (Html.BeginForm("edit", "person", FormMethod.Post))
{
}
之后检查浏览器中的标记
markup
>
我希望<form method="post" action="/person/edit/1"
在另一个url
动作中成为"/person/edit"
这是我在POST
中的action
方法
Controller
答案 0 :(得分:0)
在返回RouteData.Values.Remove("person_id");
之前在action
中添加View
对我有用。
https://stackoverflow.com/questions/6020253/calling-html-beginform-and-specifying-action