Ajax
Rails Session not being persisted
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.
Ajax improvements in MVC 3
This post is part of the series I’m doing on the newly released ASP.NET MVC 3.
Retrieve Views and Submit Forms with Ajax, JQuery and MVC
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.
Ajax with JQuery and MVC
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.