Here the RedirectToAction() doesn't call the ActionResult Index. Do I need to register a route for this?
[ActionName("onchange")]
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult OnChange(int i)
{
    m_NumberOfVisibleItems = i;           
    return RedirectToAction("Index");
}