The JsonResult class is a very useful way to return Json as an action to the client via AJAX.
public JsonResult JoinMailingList(string txtEmail) { // ...
I had the same thought and implemented a JsonPox filter to do just that.