摘要: 在做MVC示例的时候有了疑问,首先看stackoverflow上的解答:ActionResult is an abstract class that can have several subtypes:a) ViewResult - Renders a specifed view to the response streamb) PartialViewResult - Renders a specifed partial view to the response streamc) EmptyResult - An empty response is returnedd) RedirectRes 阅读全文
posted @ 2012-08-21 18:50 Stopwatch 阅读(631) 评论(1) 推荐(2)
摘要: 照着Tutorials MVC Book做,出现Operation could destabilize the runtime错误,当时找不到任何错误。星期一过来,试着更新使用的PagedList插件,果然,在github上看了源码,在Tutorials MVC Book书中传入的页码是0开始的,源码中的处理是:Subset.AddRange(pageNumber == 1 ? superset.Skip(0).Take(pageSize).ToList() : superset.Skip((pageNumber - 1) * pageS... 阅读全文
posted @ 2012-08-21 10:56 Stopwatch 阅读(611) 评论(0) 推荐(0)