vote up 0 vote down star
1

I always see the code like this in the blogs:

$.ajax({
                    type: "POST",
                    contentType: "application/json; charset=utf-8",
                    url: "WebService.asmx/HelloWorld",
                    data: "{}",
                    dataType: "json",
                    success: function(msg) {
                        alert(msg.d);
                    }
                });

But I think this is run only with asp.net 3.5. I couldn't run it with 2.0. How can I use such these codes in my Applications?

flag

78% accept rate

6 Answers

vote up 2 vote down check

You need to add this attribute to your webserver class

[System.Web.Script.Services.ScriptService]
public class Service : System.Web.Services.WebService

and this attribute to your functions

[ScriptMethod(ResponseFormat = ResponseFormat.Json)]

You don't technically need to specify the responseformat, as it responds according to the format you specify in the request. And you must specify a format in the request.

Regards
K

link|flag
vote up 0 vote down

I can't found a solution yet. What should I do for this problem? For asp.net 2.0 isn't there any way to do this?

link|flag
vote up 0 vote down

In conclusion, Do You say that, I can't use these codes direktly with asp.net 2.0?

link|flag
vote up 0 vote down

I think that the bit that you're missing is that a method marked with a WebMethod tag is going to serialize the data as XML, not JSON. With ASP.NET MVC you can return JSON natively, but if you want JSON for a WebMethod you may need to write your own converter. I'd suggest trying to change the datatype for the AJAX call to "xml" and see if that works.

I also don't use jquery for AJAX (yet), so I haven't tried this (yet).

link|flag
vote up 0 vote down

We use jQuery for all our DOM manipulation, but when sending data back to the server we use ASP.Net AJAX to take advantage of autogenerated proxy classes

Makes life real simple!

link|flag
vote up 0 vote down

I already know this article, but It couldn't help me.

In my sample app, I use these codes:

my Jquery code:

     $(document).ready(function() {            
        $('#clKaydet').click(function() {
            $.ajax({
                type: "POST",
                contentType: "application/json; charset=utf-8",
                url: "WebService.asmx/HelloWorld",
                data: "{}",
                dataType: "json",
                success: function(msg) {
                    alert(msg);
                }
            });

        });

    });

My Html Code:

<form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server" />
    <div>

        <input type="button" id="clKaydet" runat="server" value="Kayıt" onclick="Kayit()" />
    </div>

    </div>
    </form>

My Webservise Code:

  <WebMethod()> _
Public Function HelloWorld() As String
    Dim sText As String = "Hello"
    Return sText
End Function

Is there any mistake?

link|flag

Your Answer

Get an OpenID
or

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