The Smallest xmlHttp I Could Do And Still Get It Wrong
Monday 29 September 2008 @ 9:11 am
I’ve just started my journey into the land of JavaScript for real and am learning things most of you already know.  For example, as the JSON so I could plot the data.  Then, after a couple searches on the web, I found a way to send a request to the service asynchronously and get the [...]

LINQPad is Totally Awesome at Testing and Writing LINQ Queries
Saturday 20 September 2008 @ 9:25 pm
Google looking for something similar to what I want, then I put it into my application and run it. This has worked pretty well, but it takes a couple iterations to get it right. It occured to me that someone probably has written a LINQ interpreter so I just guessed the name, Ben Albahari, (which [...]

Create a Simple WCF Web Service and Use In JavaScript With Visual Studio 2008 and .Net 3.5
Sunday 14 September 2008 @ 12:20 am
Microsoft has made building a Visual Studio 2008.  In this post, I’ll go through the basics of building this app and demonstrate it working.  Included is the project file which might be a help so you can run it yourself.  I have found a lot of other posts on the web about this same topic [...]
Comments (4) - Posted in ASP.NET 3.5, C#, WCF, XML  


View a Generic List with ASP.NET MVC. Step by Step With Preview 5
Tuesday 9 September 2008 @ 1:35 pm
I’ve just started (within the past 2 days) learning and building a prototype with Scott Guthrie’s posts posts have been helpful, as well as reading a pre-release of Manning’s upcoming book Ben Scheirman and

ToLambda Refactor From ReSharper is Just Too Cool!
Tuesday 9 September 2008 @ 11:07 am
  Can hardly contain my excitement.  I was just cleaning up a business object to post in my MVC article and of course was using anonymous delegates to sort lists.  The code was a little tricky, but id did the job.  Here is the old code:   [DataObjectMethod(DataObjectMethodType.Select, true)] public List<BusinessObjectItem> GetMembers() [...]
Comments (1) - Posted in ASP.NET 3.5, C#, Tools  


How to User HttpHandler such as .ashx file with IIS7 Integrated Mode, Webfarm Environment
Saturday 6 September 2008 @ 10:20 am
Recently, we’ve moved our hosting for the IIS7’s web.config file (see below)   <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false" … [...]