开发者

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜