Best way of implementing DropDownList in ASP.NET MVC 2?

后端 未结 5 2081
小蘑菇
小蘑菇 2020-12-09 19:40

I am trying to understand the best way of implementing a DropDownList in ASP.NET MVC 2 using the DropDownListFor helper. This is a multi-part ques

5条回答
  •  悲哀的现实
    2020-12-09 20:07

    (You know this already!)

    1. Pass the list in your model with a SelectList property that contains the data

    Yes, add it when you build the SelectList. (If you build the list using LINQ, Union might come in handy.)

    Yes do do, and yes you are.

提交回复
热议问题