jQuery Infinite Scroll with MVC 2

The inspiration for this post came from answering a question on Stack Overflow: jQuery Infinite Scroll and Gridview Controller: [sourcecode language="csharp"] /// <summary> /// GET: /Widget/Search/ /// Displays search results. /// </summary> /// <param name="s"></param> /// <returns></returns> public ActionResult Search(SearchType searchType, string s, [DefaultValue(1)]int page) { try { int batch = 20; int fromRecord = [...]