How can I return multiple values from JQuery.Ajax() in the success function ?

I tried it:

          $.ajax({
                type: "POST",
                url: "default.aspx/myFunction",
                data: "{}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: function(msg) {
                    $("#myDiv").html(msg.a[0]);
                    $("#myDiv2").html(msg.a[1]);
                }
            });

And here my ASP.NET page:

<WebMethod()> _
Public Shared Function myFunction() As Array

     Dim a() As String
     a(0) = "value 1"
     a(1) = "value 2"

     Return a

End Function

It works just in unique return string, but array doesn't work :(

link|improve this question
1  
Is your WebMethod actually returning a json result? Based on the code you posted, I don't think it is. – Coding Gorilla Oct 13 '10 at 17:38
feedback

2 Answers

up vote 5 down vote accepted

Change it to msg.d[0].

Wirting msg.a is completely wrong; the method's return value has nothing to do with a variable name.

However, for security reasons, ASP.Net wraps the JSON object in a d property, so you need to write msg.d to access the array.

link|improve this answer
feedback

I got the solution!

I just use msg.d[0] instead msg.a[0]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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