I have the following code:
function confirmaExclusao() {
var decisao = confirm("Deseja excluir permanentemente esse item?");
if(decisao == true)
{
//Chamar a action para excluir
}
else
{
//Aqui não vai fazer nada!
}
}
I need to call a ActionResult
of a Controller
in C # by sending an argument, how can I do this?
As if it were a RedirectToAction
.