0
 $.ajax({
    type: "POST",
    url: "ContactList.asmx/GetContacts",
    data: "{'start':" + 1 + "}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function (msg) {
        $.mobile.showPageLoadingMsg();
         console.log(msg.d);
    },
    error: function () {
        $('[data-url="' + tempdataurl + '"] div[data-role="content"]').html("Error loading article. Please try web version.");
    }
});

how can I send Muttiple paramater? I have 2 parameter start and count . please help.

1 Answer 1

1

Please try this code

data: {start: 1 ,count:5}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.