Posts

Showing posts from December, 2019

Web api to jquery call

function GetAllContacts() {             $.ajax({                 url: 'api/ContactsAPI',                 type: 'GET',                 dataType: 'json',                 success: function (data) {                     BindContacts(data);                 },                 error: function (error) {                     debugger;                     alert('Error Loading Contacts');                 }             });         }         function GetContactForEd...