Top 20 NuGet asp.mvc Packages

Proper object serialization for jQuery to ASP.MVC ajax requests.
Provides HtmlHelpers for the FontAwesome CSS framework.
Way to manage parameters after hash(#) and access query string in single page web applications.
var fb = new ConditionalFilterGenerator<Your Entity>(Request.RequestUri.ParseQueryString(), new ConditionalFilterBuilder()); COMMENT: first example fb.And<int>((e, i) => e.Id > i, "id") .And<int>((e, i) => e.Id < 4, "Id") .Or<string>((e, s) => e.Name.StartsWith(s), ...