How do you submit from a dropdownlist \"onchange\" event from inside of an ajax form?
According to the following question: How do you submit a dropdownlist in asp.ne
What you can try to do it this (jQuery required):
$("#yourDropdown").change(function() { var f = $("#yourForm"); var action = f.attr("action"); var serializedForm = f.serialize(); $.post(action, serializedForm, function () { alert("Finished! Can do something here!") }); });