Hi,
$(document).ready(function () {
$.ajax({
type: 'POST',
url: 'MasterLanding.aspx/GetCustomerCount',
data: "{}",
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
//Count
$('[id$=lblCustomerCount]').text(data.d);
},
error: function ()
{ alert('there is some error to get App User Count'); }
});
$.ajax({
type: 'POST',
url: 'MasterLanding.aspx/GetSupplierCount',
data: "{}",
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
//Count
...
Go to the complete details ...