I want to send data as Json format but why this code returning Name=Mindstick City=Allahabad
var arr = {Name:'Mindstick', City:Allahabad};
$.ajax(
{
url: "Ajax.ashx",
type: "POST",
data: arr,
dataType: 'json',
async: false,
success: function(msg) {
alert(msg);
}
}
);
can any helpme
Anonymous User
21-Mar-2018Try this code
var arr = {Name:'Mindstick', City:Allahabad};$.ajax({
url: 'Ajax.ashx',
type: 'POST',
data: JSON.stringify(arr),
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
success: function(msg) {
alert(msg);
}
});
You have not specified contentType