On Aug 23, 5:33 pm, "Michael Randolph" <[EMAIL PROTECTED]> wrote: > I'm using the jQuery Form plugin to call an ASP.NET 2.0 page. The call > works just fine, but the response never comes back right. If the > Response.ContentType is set to "text/plain" the page gets forwarded to a > plain text JSON result.
json is in fact plain text. It is only turned into an Object by passing that text to eval(). Once you get the response text, simply do: eval(responseText).