I have problem with below details from MVC project.
When I am trying to use jquery ajax request with loading panel like spinning gif (or even text), I am getting err
Have you added the token to your View? Like this:
Since your controller receiving the post is looking for the anti forgery token, you need to ensure that you add it to your form in the view.
EDIT:
Try building your data in json first:
var formData = $('form[action="/TransportJobAddress/Create"]').serialize();
$.extend(formData, {'__RequestVerificationToken': token });
//and then in your ajax call:
$.ajax({
//...
data:formData
//...
});