Nick Riggs, Web Developer

Making stuff up about web development since last week.

10 March 2010

Subscribe to our RSS feed

Entity Framwork’s Include Function Produces Inner Joins Instead of Outer Joins

Posted in Data Access February 15, 2010

Entity Framework’s Include function usually produces OUTER JOINs. I ran into an scenario where INNER JOINs were being produced that filtered out needed records. The solution is in the direction of the EF expression.

Rendering and Binding Drop Down Lists using ASP.NET MVC 2 EditorFor

Posted in ASP.NET December 31, 2009

Use ASP.NET MVC’s EditorFor to render a drop down list from a view model. Then use a custom model binder to bind the selection back to the view model.

A Simple ForEach Loop Solution for JavaScript

Posted in JavaScript September 15, 2009

Create “foreach” functionality in JavaScript using an Array prototype function.

Post Complex JavaScript Objects to ASP.NET MVC Controllers

Posted in ASP.NET, JavaScript August 21, 2009

Use the plug-in postify.js to handle posting complex JavaScript objects to ASP.NET MVC controllers using the default model binder

Simple AJAX Polling Plugin for jQuery

Posted in ASP.NET, JavaScript August 10, 2009

Implement a simple jQuery plugin that simplifies AJAX-based polling in your web applications

Using ASP.NET MVC Partial Views for Dynamic JavaScript Rendering

Posted in ASP.NET July 30, 2009

Learn how to reuse ASP.NET MVC Partial Views from your JavaScript using AJAX.

Clean Up the setTimeout Function

Posted in JavaScript July 23, 2009

Create a prototype function to make delaying function execution more readable.