Ben Griswold on December 11th, 2008

I’m thinking it’s about time I start providing downloadable sample code along with my posts.  Rather than copying and pasting code snippets into your own solution, it might be nice to alternatively download a compressed sample project.  The Insert File Plugin for Windows Live Writer has been around for a while.  Here’s my attempt at [...]

Continue reading about Insert File Plugin

Ben Griswold on December 11th, 2008

I read a bit of “jQuery in Action” a couple of weeks back.  Actually all I read was the appendix which is aptly titled “JavaScript that you need to know but might not!”  This short chapter very concisely covers JavaScript concepts which should be required learning for all web developers.  If you are an experienced [...]

Continue reading about Required Reading for JavaScript Devs

Ben Griswold on December 10th, 2008

Do you need a quick and cache wrapper class? Here’s a static class which I included in my more recent C# web application.  You’ll notice the class uses generics to allow for some, umm, generic functionality.  public static class CacheHelper { /// <summary> /// Insert value into the cache using /// appropriate name/value pairs /// [...]

Continue reading about C# Cache Helper Class