My code:
[HttpPost]
public JsonResult DoBlah()
{
..
return Json(mySerializedObject);
}
In firebug, I can see the response content type is using application/json.
But for some reason, I get a popup with the json response.
What could the issue be here?