I\'m trying to use the ASP.NET MVC Ajax.BeginForm helper but don\'t want to use the existing content insertion options when the call completes. Instead, I want to use a cust
I use:
function onTestComplete(data, status, xhr) { var data2 = JSON.parse(data.responseText); //data2 is your object }