vote up 0 vote down star

Hello together, My first Question on Stackoverflow, I am new on the .NET MVC pattern and tried to call a Action using AJAX.BeginForm Helper Class in my Controller I return seralized JSON using return JSON();

In my view I Added a Scrip witch should consume the returnes JSON.

   function ResultSet(request) {

   var json = content.get_response().get_object();
   var result = eval(json);

   if (result.Successfull) {
       alert("Success!");
   }
   else {
       alert("else");
       }
   }

But instead if I am returned the Browser Shows me a Save Dialog to Save the JSON file.

Why?

Thanks in advance Johannes

flag

60% accept rate

2 Answers

vote up 2 vote down check

Hi Johannes! I've had a similar problem, try making sure you added the references to the microsoft ajax libraries:

<script src="/Scripts/MicrosoftAjax.debug.js" type="text/javascript"></script>
<script src="/Scripts/MicrosoftMvcAjax.debug.js" type="text/javascript"></script>

also. your ResultSet() method takes a variable named "request" as parameter, I think it should be called "content", like this?

<script type="text/javascript">
    function ResultSet(content) {
        var json = content.get_response().get_object();

        var result = eval(json);
        if (result.Successfull) {
            alert("Success!");
        }
        else {
            alert("else");
        }
    }    
</script>
link|flag
vote up 0 vote down

try setting content type of response to application/json as follows:

Response.ContentType = "application/json";
link|flag
That's redundant. Return Json() already does it. – Craig Stuntz May 22 at 12:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.