Selecting a value from a DropDownList to be able to fill in fields
问题 I have populated a DropDownList with the following: Model: namespace VAGTC.Models { using System; using System.Collections.Generic; public partial class Organization { public int OrganizationID { get; set; } public string Name { get; set; } } Controller: public ActionResult Index() { ViewBag.DropOrgID = ddp.OrganizationList(); return View(); } ViewModel: namespace VAGTC.ViewModels { public class OrgDrop { public Organization organization { get; set; } public IEnumerable<Organization>