ASP.Net MVC Update ViewModel on DropDown Selection changed
问题 At first I'm absolutely new on web development. I'm trying to develop a Web application which consists of a single page (I started with an empty project trying to follow the mvc pattern). To populate my View I pass a ViewModel through my HomeController to my "Home"View. Now I want to change a few Label-Texts depending on a DropDown selection. ViewModel: public IEnumerable<Models.Language> AvailableLanguages; public Models.Language SelectedLanguage Public IEnumerable<Models.Text> Content;