asp.net-mvc – Html.BeginForm()与GET方法

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – Html.BeginForm()与GET方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何指定我的表单应该使用GET方法与@ Html.BeginForm()?
@using (Html.BeginForm(method: FormMethod.Get))

这里VS抱怨说,最好的重载没有参数方法。谢谢!

解决方法

有一个 overload允许您指定方法
@using (Html.BeginForm("someAction","someController",FormMethod.Get))
{
    ...
}
原文链接:https://www.f2er.com/aspnet/252113.html

猜你在找的asp.Net相关文章