Posts
Technical notes, essays, and experiments from sethjuarez.com.
Ajax HTML Grid Control for ASP.NET MVC (Part 2)
Adding interactive editing capabilities to a custom MVC grid control using jQuery. Implements in-place row editing with edit/delete/save/cancel functionality and proper event handling.
Ajax HTML Grid Control for ASP.NET MVC (Part 1)
Building a data-bound grid control from scratch for ASP.NET MVC using extension methods and reflection. First steps toward creating a fully customizable, CSS-stylized table that works without traditional web controls.
Using JQuery to perform Ajax calls in ASP.NET MVC
Learn how to leverage jQuery's powerful CSS selectors and AJAX methods to create dynamic ASP.NET MVC applications with minimal hassle. Covers routing, model binding, and practical implementations of asynchronous data loading.
F# Dictionary Binary Search
A deep dive into implementing binary search on dictionary files using F#'s functional paradigm. Explores recursive functions, pattern matching, and how functional thinking leads to elegant solutions for file I/O and search algorithms.