如何从 ASP.NET MVC2 中的 DropDownListFor html 助手检索值?
我知道这里有一些关于 DropDownListFor 的类似问题,但都没有帮助我...... 我在我的项目中使用实体框架作为 ORM。有一种名为“Stete”的 EF 模型。 St…
EditorTemplate 中的 ASP.Net MVC 2 DropDownListFor
我有一个如下所示的视图模型: namespace AutoForm.Models { public class ProductViewModel { [UIHint("DropDownList")] public String Category { g…
当您有对象列表时,使用 Html.DropDownListFor 的最佳方法是什么?
在我的视图模型中,如果有: List 其中汽车有 ID 和名称。我想使用 Html.DropDownListFor() 最好的方法来创建一个下拉框,因为我希望项目的值是 ID,…