0
我的汽車品牌一個下拉列表:我需要簡單的方式讓依賴DropDownLists
@Html.DropDownListFor(
model => model.Brand,
new SelectList(
new List<Object>{
new { value = "Opel" , text = "Opel" },
new { value = "Lada" , text = "Lada" },
new { value = "BMW" , text = "BMW"}
},
"value",
"text"
正如你所看到的,我是做任何類懶得和蒂斯代碼在查看。
我該如何製作第二個下拉列表:與汽車模型?我的意思是,用戶選擇「歐寶」,然後可以選擇「Corsa」或「Vectra」,但不是「X6」或「2110」?
尋找最簡單的方法來做到這一點。