Following some examples, I did the following:
var nome = document.getElementById("Nome").value;
var sobrenome = document.getElementById("Sobrenome").value;
var email = document.getElementById("Email").value;
var senha = document.getElementById("Senha").value;
if (nome == null || nome == "") {
return alert("FALTA INFORMAÇÃO");
}
if (sobrenome == null || sobrenome == "") {
return alert("FALTA INFORMAÇÃO");
}
if (email == null || email == "") {
return alert("FALTA INFORMAÇÃO");
}
if (senha == null || senha == "") {
return alert("FALTA INFORMAÇÃO");
}
$.ajax({
type: 'POST',
url: '../VerificaDuplicidadeCadastro/Home=email?' + email,
//data: email,
Well, I've mentioned the 'date' because in the examples everybody uses this, but I honestly do not understand how it works, so I tried to pass the email through the URL itself, but in my controller I'm getting the null value. >
Follow the controller:
public IActionResult VerificaDuplicidadeCadastro(string email)
{
var con = new Conexao();
con.OpenConnection();
con.CloseConnection();
return Json(true);
}
How can I do this properly?
Thank you.