13 Mar
2010

Asp.Net MVC 2 Areas

I?m looking into the new stuff in Asp.Net MVC 2, trying to figure out what is cool and what is just there.  Areas look like a nice addition.  Areas allow you to separate your Asp.Net MVC application into more distinct partitions.  So all of the Controllers, Models, Views, and even routes belong to one directory […]

Read More
2 Mar
2010

JQuery Validator Cheat Sheet

Category:UncategorizedTag: :

I?m getting a session ready for Boise Code Camp 2010 on JQuery Validator. I thought it would be cool to hand out a cheat sheet ? but I couldn?t find one. So here is rev. 1 of my?Jquery Validator Cheat sheet.

Read More
6 Dec
2009

Authenticated web services calls with Asp.Net MVC

I?ve been encountering a problem as of late.  I?m creating a lot of ?Single Page Pattern? web applications.  This means you load the page once, then handle everything else via web service calls. And if you have ever worked on web applications you should be familiar with the ?user went to lunch? issue (session timeout).  […]

Read More
23 Nov
2009

JQuery Validator plus Element IDs, and Names

OK, just discovered an interesting implementation detail of JQuery Validator (one that I should have known about already as well). OK, if you have a form where the inputs of the for have both id and name  attributes, the name attributes trump id. So if you have this: 1: <input type=’type’ id=’RegisterUserName’ name=’userName’ /> Then […]

Read More