ASP.NET MVC 5 – Post array of viewModels to controller with ajax with or without __RequestVerificationToken – Jquery ajax
As I mentioned in title I'm trying to send an array of view models back to a controller through an Ajax request. I'll use some dummy values and names: MyViewModel.cs int VM_id1; int VM_id2; string VM_str1; string VM_str2; Controller //…