A Glimpse into the future of MVC debugging
What Firebug is for the client, Glimpse does for the server… in other words, a client side Glimpse into whats going on in your server.
What Firebug is for the client, Glimpse does for the server… in other words, a client side Glimpse into whats going on in your server.
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 = [...]