Say I have a model that maps a person and I want to build a view for this model having some text inputs and a series of drop-downs to select state, province, city.
I'm adding @onchange = "this.form.submit()"
in each @Html.DropDownListFor
to post back to the server and drill-down the selection on those drop-downs.
How can I understand in my controller the source of said post? How do I distinguish the post coming from a drop-down change to the one coming from a submit button?