我想为我的模型类的某些属性生成一个下拉列表。我正在开发一个 mvc .net 应用程序,并且我正在使用 razor 引擎来查看视图。这是我的课:
public class present
{
public DateTime jour { get; set; }
public int entree_mat_h { get; set; }
public int entree_mid_h { get; set; }
public int sortie_mat_h { get; set; }
public int sortie_mid_h { get; set; }
public int entree_mat_m { get; set; }
public int entree_mid_m { get; set; }
public int sortie_mat_m { get; set; }
public int sortie_mid_m { get; set; }
public string mac { get; set; }
public string ip { get; set; }
}
例如,我想为每个整数属性显示一个从 0 到 60 的值的下拉列表。@html.dropdownlistfor() 在这种情况下有效吗?