当我点击表格下方的分页链接时,控件将转到GET方法,并且网格中的所有数据都将丢失。
当我点击分页号码时,有没有办法将控件重定向到POST方法。
答案 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
)