Requirment: I have a drop down list on my view page, displaying a list of vendors. When a vendor is selected from the dropdown, the page displays the details of selected ven
Assuming you will need to do a database hit to get the results, inside James D'Angelo'a jquery function you would then do a .post on the vendor details method in your controller to get your object back and then you populate the details for the selected vendor to the page. You will have to add a method to the controller that returns a json object
$.post("/{Controller}/{Method}", { VendorId: selectVal }, function(response, status) {
var vendorDetails = eval("(" + response + ")");
//additional code to populate the fields