I've already tried everything. Someone who could help me
That's how I send my object to the controller
$.ajax({
type: "GET",
url: "@Url.Action("editarTarjetaCapacitacion",
"TarjetaCapacitacion")",
scriptCharset: "utf-8",
dataType: "json",
contentType: "appliction/json; charset=iso-8859-1",
data: {
InstructoresExternos: JSON.stringify(tarjetaCapacitacion.InstructoresExternos)
},
success: function (respuesta) {
if (respuesta.errorCode != 200) {
ErrorBottom(respuesta.mensajeError);
return;
}
window.location.replace("http://" + window.location.host + "@Url.Action("Index", "TarjetaCapacitacion")");
}
This is where I receive it
public JsonObject editarTarjetaCapacitacion(string[] InstructoresExternos)
{}
What I'm trying to do is get the fix and go through it but I can not make the fix