Click here to Skip to main content
15,893,904 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I Am Calling a WCF SVC function Using AJAX .
Server response Is OK But No JASOn Data Revived .
Can u Please Help For The Same
Posted
Comments
Prasad_Kulkarni 23-Jul-12 3:36am    
Post some code snippets, what you've tried so far?

1 solution

JavaScript
$.ajax({
                url: "http://localhost:38503/FinalSVC.svc/GetNumbers",
                type: "GET",
                dataType: "json",
                data: {},
//                contentType : "application/json; charset=utf-8",
                processdata: true,
                
                success: function () { alert(data); }

            })
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900