kodefuguru.com — I came across a post in the asp.net forums where someone asked how to do a postback when someone selected an item in a dropdownlist in ASP.NET MVC.
I would like to know how to Select a value from a dropdown list, so that it does a postback and fills the rest of the form textboxes with data
Whereas you can’t exactly do a postback in MVC, you can still respond to a DropDownList’s change event and fill in the rest of a form from data retrieved from your application.
original link