gpt4 book ai didi

asp.net - 下拉列表 asp mvc

转载 作者:行者123 更新时间:2023-12-03 21:42:56 25 4
gpt4 key购买 nike

我想为我的模型类的某些属性生成一个下拉列表。我正在开发一个 mvc .net 应用程序,我正在使用 razor 引擎进行 View 。这是我的课:

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() 在这种情况下工作吗?

最佳答案

在您的 View 中声明可能值的列表,在您的情况下为 0 到 60

@{ var values = new SelectList(Enumerable.Range(0, 60)); }

然后,您可以在 DropDownListFor 中使用它 helper
@Html.DropDownListFor(m => m.entree_mat_h, values)
@Html.DropDownListFor(m => m.entree_mid_h, values)
....

关于asp.net - 下拉列表 asp mvc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12070363/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com