Html.BeginForm() with GET method
How can I specify that my form should be using GET method with @Html.BeginForm() ?
@using (Html.BeginForm(method: FormMethod.Get))
Here VS complains th开发者_Go百科at best overload doesn't have a parameter method. Thank you!
There is an overload that allows you to specify the method:
@using (Html.BeginForm("someAction", "someController", FormMethod.Get))
{
...
}
Decorate the controller's action method with [HttpGet]. This is the controller action that this form will submit to.
精彩评论