I am using jquery ajax method and sending email from that method to the asp page method but getting the Invalid Json Primitive error I have used followind code please help if anyone know how to handle this.
$.ajax({
url: "login.aspx/DNSValidation",
type: 'POST',
cache: false,
dataType: 'json',
data: {"EmailAddress":email.toString()},
contentType: "application/json; charset=utf-8",
timeout: 6000,
error: function () {
alert('AJAX Request Failed');
ajaxInProgress = false;
},
success: function (responseData) {
Console.debug("Email : " + responseData.d);
ajaxInProgress = false;
}
}); //ajax
login.aspx page code
[WebMethod]
public static string DNSValidation(object EmailAddress)
{
List<object> eMail = new JavaScriptSerializer().ConvertToType<List<object>>(EmailAddress);
Address product = new Address();
product.emailaddress = eMail[0].ToString();
string output = JsonConvert.SerializeObject(product);
return output;
}