Assigning event handlers is fundamental to jQuery and one of the more common reasons for leveraging this toolset. Most tutorials / examples, even in the primary documentation, implement event handlers…
Category: Code
Over the years of coding in ASP.NET, I continue to find ways to create simple, reusable objects that are fun and make development easier. One of my favorite ways is…
The Correct Way (yes, that’s capitalized) to reference is by CDN. For more information on a Content Distribution Network, Google (yes, that’s capitalized) it. That’s not why we’re here. <script…
This is a small but handy extension of the standard .NET DropDownList control in order to support an EmptyDataTemplate. The EmptyDataTemplate concept is used in other places to display some…
It turns out that once you start extending DataControlField, you never turn back. I have discovered joy in reducing code duplication and creating reusable components by converting common GridView tasks…
While the idea is far from new (and can be seen in various implementations here, here, and here), every example I had found fell short of being exactly what I…
I am posting this not only for personal reference, but because I conjured it as a result of the T-SQL Explode function I described in my last post. Previously, I…
A feature I have used with much joy in PHP is the explode() function, which creates an array populated by a single parameter containing comma-separated values (CSV). I recently had…
Every single time I deal with this, it punches me in the face. I love it because its cool, I hate it because I always forget. In Javascript, (as well…
When I first discovered the list tags in HTML (ul, li…) I scoffed. That’s all fine and dandy to give an example of creating a grocery list, but who is…