MVC Dropdownlistfor<>

后端 未结 4 724
轮回少年
轮回少年 2021-02-10 14:41

I just started a project in MVC. I am new to MVC asp.net. I want to add a dropdown list box like I used to add in asp.net.

code glimpses in asp.net for Dropdownlist box

4条回答
  •  萌比男神i
    2021-02-10 15:12

    If you want to create a drop down directly on view regardless of controller and model then you can create it using following code

    @Html.DropDownList("Departments", 
      new SelectList(new [] { new KeyValuePair( "IT", 0 ), new KeyValuePair( "HR", 1 )},"Value", "Key")) 
    

提交回复
热议问题