MVC分页:Post方法而不是Get方法

时间:2016-06-22 13:38:04

标签: post razor model-view-controller pagedlist

当我点击表格下方的分页链接时,控件将转到GET方法,并且网格中的所有数据都将丢失。

当我点击分页号码时,有没有办法将控件重定向到POST方法。

1 个答案:

答案 0 :(得分:0)

如果您使用的是Html.ActionLink,则可以轻松完成

Html.ActionLink(
            "Title", // <--Yuor title
            "Item",   // <-- ActionMethod
            "Login",  // <-- Controller Name.
            null, // <-- Route arguments.
            null  // <-- htmlArguments .. which are none. 
                  //     There you can set HTTP method, which will be requested
            )