0
I have a c# check that if it is true, runs the following javascript function:
@{
if (!string.IsNullOrEmpty(TipoPecaController.MsgExcluir))
{
if (TipoPecaController.MsgExcluir == "3")
{
<script type="text/javascript">
window.onload = function MensagemErro() {
debugger;
try {
alertify.alert("Existem itens utilizando este Tipo de Peça.", function () {
alertify.message('OK');
});
} catch (err) {
debugger
}
try {
alertify.error("Código e GrupoProduto já existente");
} catch (err) {
debugger;
}
}
@TipoPecaController.MsgExcluir = "";
</script>
}
}
}
But even if the verification is true, the javascript code is not executed
That’s on a page
.cshtml
, MVC?– Ricardo Pontual