1
With each data change of the dropdownlist I must call a function. But I can’t get him into the job. I used Onchange but it doesn’t work. How to do ?
Code Asp:
<asp:DropDownList name="ddlFormaPagamento" ID="ddlFormaPagamento" runat="server"
Font-Bold="true" CssClass="newCombo" Width="340" AutoPostBack="True"onchange="javascript:VerificaIndisponibilidade();">
</asp:DropDownList>
//Função:
function VerificaIndisponibilidade() {
$.ajax({
type: "POST",
url: "ReservaTarifario.aspx/VerificaIndisponibilidade",
data: JSON.stringify({ MsgErro: MsgErro }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: validar(Erro, "Indisponível"),
failure: function () {
alert('');
fecharLoad();
}
});
}