I have a Partial View that renders WebGrid. My controller looks like
public ActionResult Index() { return View(); } public ActionResult GetUserList(int? pag
If you remove [HttpPost] attribute and let the route come to the same function. you'll find the Request["page"] value in your method. this will allow you to put a check on Request["Page"] value.