Ajax

Rails Session not being persisted

Jun 27, 2012

I ran into an issue today around the session object in Rails. The session object works pretty much like a hash and allows you to store data between requests. A number of persistent stores exist, but overall it acts like a hash that is persisted between requests.

Read More →

Ajax improvements in MVC 3

Jan 19, 2011

This post is part of the series I’m doing on the newly released ASP.NET MVC 3.

Read More →

Retrieve Views and Submit Forms with Ajax, JQuery and MVC

Nov 19, 2009

In my previous post I was using Ajax to retrieve Json data and update the DOM using JavaScript.  While this is pretty useful you will often find your application quickly becomes JavaScript-heavy and difficult to maintain.  I’m going to illustrate using JQuery and the MVC Ajax libraries to simplify this process.

Read More →

Ajax with JQuery and MVC

Nov 18, 2009

I recently had to explain to a colleague how to do Ajax with JQuery and ASP.NET MVC.  I thought I might put my example here for future reference.

Read More →