Is it possible, within a click to call two submit?
Here's my problem, I need to call two ActionResults within a button.
Here's what I've done so far:
$('#enviarPreProposta').click(function () {
var telefoneValido = ValidarTelefones();
var idUltimoTelefone = $('#tblTelefones tbody tr:last td:first input').val();
if (idUltimoTelefone == undefined) {
MessageBoxKo('É obrigatório a inclusão de pelo menos um telefone.', 'Atenção', null, null, null, null);
return false;
}
var retorno = ValidarCamposNecessarios();
if (retorno == true && telefoneValido) {
DesabilitarCamposResposanvelFinanceiro();
$('#frmVendaEletronica').attr('action', '../VendaAdministrativa/ValidarCampos')
$('#frmVendaEletronica').submit();
$('#frmVendaEletronica').attr('action', '../VendaAdministrativa/EnviarPrePropostaAceitacao')
$('#frmVendaEletronica').submit();
}
});