This question is locked. New answers and comments are not allowed.
public ActionResult Index(GridCommand command){ command.Page; // 100000 (user played with url like this ?Grid-Page=100000 ) // I want correct grid current page // something like this View["page"] = 10; ...}//view.Pageable(paging => paging.PageTo(View["page"])) // this doesn't work, only for init grid.(Protect from url as /Grid-Page= -10000&Grid-Size=10000)
Need help!