hi, i created one wep api crud operation using MVC. i followed this following link to create that web api. kindly go through this link for clear.
http://www.dotnetchunks.com/Article/MVC%204%20WEB%20API%20_NET%204_5/13#.UjKapManqul
I got the GET response also. but i am getting xml response. instead i needed json response. so in that article they told to put following javascript to get JSON response but they did not mention where to put the following javascript. so blindly i put the javascript in index.cshtml<--views<---HOME(which is in solution explorer in project). because this folder only has design form. so still i am getting xml response. if i remove the javascript also, it response xml format. so, i think the javascript is not invoked or i do not know where to put the javascript correctly. so, please help from this problem. thanks a lot.
javascript file:
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: "GET",
url: "api/customer/1",
dataType: "json",
success: function (data) {
alert(data);
}
});
});
</script>
output file:
<CustomerModel></div> <div class="collapsible-content"> <div class="line"><Id>1</Id></div> <div class="line"><Salary>20</Salary></div> <div class="line"><cusName>rajesh</cusName></div> </div> <div class="line"></CustomerModel></div> </div> </div> <div class="collapsible" id="collapsible2"> <div class="expanded"> <div class="line"><CustomerModel></div> <div class="collapsible-content"> <div class="line"><Id>2</Id></div> <div class="line"><Salary>50</Salary></div> <div class="line"><cusName>magesh</cusName></div> </div> <div class="line"></CustomerModel></div> </div> </div> </div> <div class="line"></ArrayOfCustomerModel></div>