Javascript – What is different in my Ajax vs XMLHttpRequest Call that lets my Server understand Ajax but not XMLHttpRequest?
I have a very simple server call like this: [HttpPost] [AllowAnonymous] public JsonResult Test(TestRequestModel requestModel) { //do stuff return Json(new { result.Success }); } My TestRequestModel looks like this: public class TestRequestModel { public string Email { get; set; }…